-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 863 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "aihubmix",
"private": true,
"scripts": {
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"clean": "turbo run clean",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"test": "turbo run test",
"test:all": "pnpm build && cd examples && pnpm test",
"test:examples": "cd examples && pnpm test",
"test:workspace": "cd examples && npx tsx ai-sdk-provider.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish",
"demo:changeset": "node scripts/create-changeset.js",
"demo:workspace": "cd examples && pnpm test"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"turbo": "^1.12.4",
"typescript": "5.6.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@8.15.4"
}