-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 929 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 929 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
30
31
32
33
{
"bugs": {
"url": "https://github.com/niapya/ai-sdk-x/issues"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "^1.3.9",
"typescript": "^5.9.3",
"vitepress": "^1.6.4"
},
"homepage": "https://niapya.github.io/ai-sdk-x",
"name": "ai-sdk-x-monorepo",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/niapya/ai-sdk-x.git"
},
"scripts": {
"check": "bunx biome check --write .",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "bunx biome format --write .",
"lint": "bunx biome check .",
"release": "bun run typecheck && bun run format && bun run scripts/release.ts",
"release:build": "bun run typecheck && bun run format && bun run scripts/release.ts --build-only",
"test": "bun test --coverage",
"typecheck": "tsc --noEmit"
},
"workspaces": [
"packages/*"
]
}