forked from vercel/ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 KB
/
package.json
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
{
"private": true,
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "turbo clean",
"dev": "turbo dev --no-cache --concurrency 16 --continue",
"lint": "turbo lint",
"prepare": "husky install",
"prettier-check": "prettier --check \"**/*.{js,ts,tsx,md,mdx}\"",
"type-check": "turbo type-check",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"publint": "turbo publint",
"test": "turbo test --filter=ai...",
"ci:release": "turbo clean && turbo build --filter=ai... && changeset publish",
"ci:version": "changeset version && node .github/scripts/cleanup-examples-changesets.mjs && pnpm install --no-frozen-lockfile",
"check-docs-links": "node ./check-docs-links.js"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"chalk": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-vercel-ai": "workspace:*",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"publint": "0.1.11",
"turbo": "^1.10.13",
"vitest": "^0.34.6"
},
"homepage": "https://sdk.vercel.ai/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": "[email protected]",
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}