This repository has been archived by the owner on Jan 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.49 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
{
"private": true,
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean": "turbo clean",
"dev": "turbo dev --no-cache --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"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"eslint": "^7.32.0",
"eslint-config-vercel-ai": "workspace:*",
"husky": "^8.0.0",
"jest": "29.2.1",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"publint": "0.1.11",
"ts-jest": "29.0.3",
"turbo": "^1.10.13"
},
"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": "pnpm@8.6.9",
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}