-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.24 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
{
"name": "ai-sdk-x-monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/Niapya/ai-sdk-x.git"
},
"devDependencies": {
"@biomejs/biome": "^2.4.4",
"@types/bun": "^1.3.9",
"bunup": "^0.16.31",
"typescript": "^6.0.3"
},
"bugs": {
"url": "https://github.com/Niapya/ai-sdk-x/issues"
},
"homepage": "https://Niapya.github.io/ai-sdk-x",
"private": true,
"scripts": {
"build": "bun run --cwd packages/ai-sdk-x build",
"check:type": "bunx tsc -p packages/ai-sdk-x/tsconfig.json --noEmit && bunx tsc -p packages/docs/tsconfig.json --noEmit",
"check:format": "bunx biome check .",
"check:format:fix": "bunx biome check --write .",
"lint": "bun run check:format",
"test": "bun test --coverage",
"check": "bun run check:type && bun run lint && bun run test",
"format": "bunx biome format --write .",
"docs:build": "cd packages/docs && bun run build",
"docs:dev": "cd packages/docs && bun run dev",
"docs:preview": "cd packages/docs && bun run start",
"release:patch": "bun run --cwd packages/ai-sdk-x release:patch",
"release:minor": "bun run --cwd packages/ai-sdk-x release:minor",
"release:major": "bun run --cwd packages/ai-sdk-x release:major"
},
"workspaces": [
"packages/*"
],
"dependencies": {}
}