-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.56 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
{
"name": "nine1bot-workspace",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "contrueCT",
"repository": {
"type": "git",
"url": "git+https://github.com/contrueCT/nine1bot.git"
},
"homepage": "https://github.com/contrueCT/nine1bot#readme",
"bugs": {
"url": "https://github.com/contrueCT/nine1bot/issues"
},
"type": "module",
"workspaces": [
"packages/*",
"web"
],
"scripts": {
"dev": "bun run --cwd opencode dev",
"build:web": "web/node_modules/.bin/vue-tsc -b web/tsconfig.json && web/node_modules/.bin/vite build web --config web/vite.config.ts",
"start": "bun run packages/nine1bot/src/index.ts",
"serve": "bun run --cwd opencode/packages/opencode src/index.ts serve --port 4096",
"web": "bun run --cwd web dev",
"nine1bot": "bun run packages/nine1bot/src/index.ts",
"rebuild": "web/node_modules/.bin/vue-tsc -b web/tsconfig.json && web/node_modules/.bin/vite build web --config web/vite.config.ts",
"dev:test": "node scripts/dev-test.mjs",
"ci:typecheck": "bun run --cwd packages/platform-protocol typecheck && bun run --cwd packages/platform-feishu typecheck && bun run --cwd packages/platform-gitlab typecheck && bun run --cwd packages/nine1bot typecheck && bun run --cwd packages/browser-extension typecheck && bun run --cwd packages/browser-mcp-server typecheck && bun run --cwd web typecheck",
"ci:test": "bun test packages/nine1bot/src packages/platform-feishu/test packages/platform-gitlab/test packages/browser-extension/test packages/browser-mcp-server/test web/test scripts"
}
}