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
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"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 --no-cache --concurrency 16 --continue",
"lint": "turbo lint",
"prepare": "husky install",
"update-references": "update-ts-references",
"prettier-check": "prettier --check \"**/*.{js,ts,tsx,md,mdx,svelte}\"",
"type-check": "tsc --build",
"type-check:full": "tsc --build tsconfig.with-examples.json",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx,svelte}\"",
"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"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@playwright/test": "^1.44.1",
"del-cli": "^5.1.0",
"eslint": "8.57.1",
"eslint-config-vercel-ai": "workspace:*",
"husky": "^8.0.0",
"lint-staged": "15.2.10",
"next": "15.0.0-canary.23",
"playwright": "^1.44.1",
"prettier": "3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"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",
"update-ts-references": "^3.6.0",
"vitest": "2.1.4"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.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",
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all",
"plugins": [
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}