-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 4.83 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 4.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "senpi-monorepo",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"packages/storage/*",
"packages/pty",
"packages/coding-agent/examples/extensions/with-deps",
"packages/coding-agent/examples/extensions/custom-provider-anthropic",
"packages/coding-agent/examples/extensions/custom-provider-gitlab-duo",
"packages/coding-agent/examples/extensions/sandbox",
"packages/coding-agent/examples/extensions/gondolin"
],
"scripts": {
"clean": "shx rm -rf dist && npm run clean --workspaces",
"build": "node scripts/build-all.mjs",
"build:npm": "node scripts/build-all.mjs --pm npm",
"build:bun": "node scripts/build-all.mjs --pm bun",
"build:pnpm": "node scripts/build-all.mjs --pm pnpm",
"dev": "concurrently --names \"ai,agent,coding-agent,web-ui,tui\" --prefix-colors \"cyan,yellow,red,green,magenta\" \"cd packages/ai && npm run dev\" \"cd packages/agent && npm run dev\" \"cd packages/coding-agent && npm run dev\" \"cd packages/web-ui && npm run dev\" \"cd packages/tui && npm run dev\"",
"dev:tsc": "concurrently --names \"ai,web-ui\" --prefix-colors \"cyan,green\" \"cd packages/ai && npm run dev:tsc\" \"cd packages/web-ui && npm run dev:tsc\"",
"check": "biome check --write --error-on-warnings . && npm run check:pinned-deps && npm run check:ts-imports && npm run check:shrinkwrap && npm run check:install-lock:coding-agent && tsgo --noEmit && node scripts/check-browser-smoke.mjs && node scripts/run-web-ui-check.mjs",
"check:browser-smoke": "node scripts/check-browser-smoke.mjs",
"check:pinned-deps": "node scripts/check-pinned-deps.mjs",
"check:shrinkwrap": "node scripts/generate-coding-agent-shrinkwrap.mjs --check",
"check:install-lock:coding-agent": "node scripts/generate-coding-agent-install-lock.mjs --check",
"check:ts-imports": "node scripts/check-ts-relative-imports.mjs",
"verify:pms": "node scripts/verify-package-managers.mjs",
"generate:models": "npm --prefix packages/ai run generate-models && npm --prefix packages/ai run generate-image-models",
"generate:model-catalog": "npm --prefix packages/ai run generate-model-catalog",
"diff:model-catalog": "node scripts/diff-model-catalog.mjs",
"eval": "npm run eval --workspace=@code-yeongyu/senpi-evals --",
"check:model-catalog": "node scripts/publish-model-catalog.mjs --input .artifacts/model-catalog --dry-run",
"profile:tui": "node scripts/profile-coding-agent-node.mjs --mode tui",
"profile:rpc": "node scripts/profile-coding-agent-node.mjs --mode rpc",
"test": "npm run test:scripts && npm run test --workspaces --if-present",
"test:scripts": "node --test scripts/*.test.mjs",
"version:patch": "npm version patch -ws --no-git-tag-version && node scripts/sync-versions.js && npm install --package-lock-only --ignore-scripts",
"version:minor": "npm version minor -ws --no-git-tag-version && node scripts/sync-versions.js && npm install --package-lock-only --ignore-scripts",
"version:major": "npm version major -ws --no-git-tag-version && node scripts/sync-versions.js && npm install --package-lock-only --ignore-scripts",
"version:set": "npm version -ws",
"prepublishOnly": "npm run clean && npm run build && npm run check",
"publish": "npm run prepublishOnly && node scripts/prepare-senpi-bundled-workspaces.mjs && npm publish -ws --access public --tag latest --provenance",
"publish:dry": "npm run prepublishOnly && node scripts/prepare-senpi-bundled-workspaces.mjs && npm publish -ws --access public --tag latest --provenance --dry-run",
"release": "node scripts/release.mjs",
"release:local": "node scripts/local-release.mjs",
"shrinkwrap:coding-agent": "node scripts/generate-coding-agent-shrinkwrap.mjs",
"install-lock:coding-agent": "node scripts/generate-coding-agent-install-lock.mjs",
"preinstall": "node scripts/create-bin-stubs.mjs",
"prepare": "husky",
"hydrate:model-data": "npm --prefix packages/ai run hydrate-model-data",
"check:model-data": "npm --prefix packages/ai run check:model-data"
},
"devDependencies": {
"@anthropic-ai/sandbox-runtime": "0.0.67",
"@biomejs/biome": "2.5.5",
"@types/node": "26.1.1",
"@typescript/native-preview": "7.0.0-dev.20260707.2",
"esbuild": "0.28.1",
"husky": "9.1.7",
"jiti": "2.7.0",
"shx": "0.4.0",
"tsx": "4.23.1",
"typescript": "6.0.3"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"get-east-asian-width": "1.6.0"
},
"overrides": {
"@hono/node-server": "2.0.10",
"postcss": "8.5.18",
"brace-expansion": "5.0.8",
"esbuild": "0.28.1",
"fast-uri": "3.1.4",
"protobufjs": "7.6.5",
"rimraf": "6.1.2",
"shell-quote": "1.9.0",
"vite": "8.0.16",
"ws": "8.21.1",
"gaxios": {
"rimraf": "6.1.2"
},
"@anthropic-ai/sdk": "0.91.1"
},
"trustedDependencies": [
"@parcel/watcher",
"canvas",
"esbuild",
"protobufjs"
],
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"canvas",
"esbuild",
"protobufjs"
]
}
}