forked from vercel/ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"private": true,
"name": "ai-repo",
"scripts": {
"build": "turbo build --concurrency 16",
"build:examples": "turbo build --filter=@example/*",
"build:packages": "turbo build --filter=@ai-sdk/* --filter=ai",
"changeset": "changeset",
"clean": "turbo clean",
"dev": "turbo dev --cache=local:r,remote:r --concurrency 25 --continue",
"prepare": "husky",
"update-references": "update-ts-references",
"type-check": "tsc --build",
"type-check:full": "tsc --build tsconfig.with-examples.json",
"publint": "turbo publint",
"test": "turbo test --concurrency 16 --filter=!@example/*",
"test:update": "turbo test:update --concurrency 16 --filter=!@example/*",
"ci:release": "turbo clean && turbo build && changeset publish",
"ci:version": "changeset version && node .github/scripts/cleanup-examples-changesets.mjs && pnpm install --no-frozen-lockfile",
"clean-examples": "node .github/scripts/cleanup-examples-changesets.mjs && pnpm install --no-frozen-lockfile",
"check": "ultracite check",
"fix": "ultracite fix"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"ultracite fix"
]
},
"devDependencies": {
"lint-staged": "^15.5.1",
"@changesets/cli": "2.27.10",
"@playwright/test": "^1.44.1",
"del-cli": "^5.1.0",
"husky": "^9.1.7",
"next": "15.0.7",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"playwright": "^1.44.1",
"publint": "0.2.12",
"react": "19.0.0-rc-cc1ec60d0d-20240607",
"react-dom": "19.0.0-rc-cc1ec60d0d-20240607",
"turbo": "2.4.4",
"typescript": "5.8.3",
"ultracite": "7.3.2",
"update-ts-references": "^3.6.0",
"vitest": "4.1.0"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0 || ^24.0.0"
},
"homepage": "https://ai-sdk.dev/docs",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/ai.git"
},
"license": "Apache License",
"bugs": {
"url": "https://github.com/vercel/ai/issues"
},
"keywords": [
"ai"
],
"packageManager": "pnpm@10.11.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"tinyexec": "1.0.2"
}
}
}