-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "codework",
"version": "0.0.0",
"private": true,
"description": "AI toolkit and coding agents for building AI agents.",
"homepage": "https://github.com/codeworksh/codework",
"bugs": {
"url": "https://github.com/codeworksh/codework/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeworksh/codework.git"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"lint": "vp lint",
"check": "vp check",
"check:packages": "vp run -r check",
"test": "vp test",
"test:packages": "vp run -r test",
"build": "vp build",
"build:packages": "vp run -r build",
"publish:package": "node scripts/publish.js",
"publish:aikit": "node scripts/publish.js aikit",
"publish:aikit:dry": "node scripts/publish.js aikit --dry-run",
"publish:utils": "node scripts/publish.js utils",
"publish:utils:dry": "node scripts/publish.js utils --dry-run"
},
"devDependencies": {
"@sinclair/typebox": "^0.34.48",
"@types/node": "^24.6.1",
"typescript": "^5.8.3",
"vite-plus": "0.1.16"
},
"packageManager": "[email protected]"
}