-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.57 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
41
42
43
44
45
46
47
{
"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/*",
"extras/*"
],
"type": "module",
"scripts": {
"prepare": "node scripts/clean-tsgo-backups.mjs && effect-tsgo patch --typescript --oxlint",
"lint": "vp lint",
"check": "vp check",
"check:packages": "vp run -r check",
"cli": "vp run @codeworksh/cli#start",
"test": "vp test",
"test:packages": "vp run -r test",
"typecheck": "vp run -r --concurrency-limit 2 typecheck",
"build": "vp run -r build",
"build:packages": "vp run -r build",
"bump:aikit": "pnpm --filter @codeworksh/aikit run bump",
"bump:harness": "pnpm --filter @codeworksh/harness run bump",
"release:aikit": "pnpm --filter @codeworksh/aikit run release",
"release:aikit:dev": "pnpm --filter @codeworksh/aikit run release:dev",
"release:aikit:dry": "pnpm --filter @codeworksh/aikit run release:dry",
"release:harness": "pnpm --filter @codeworksh/harness run release",
"release:harness:dev": "pnpm --filter @codeworksh/harness run release:dev",
"release:harness:dry": "pnpm --filter @codeworksh/harness run release:dry"
},
"devDependencies": {
"@effect/tsgo": "catalog:",
"@types/node": "catalog:",
"typescript": "catalog:",
"vite-plus": "catalog:"
},
"packageManager": "[email protected]"
}