-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 884 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "kompass-workspace",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"check": "bun --eval \"await import('./packages/opencode/index.ts')\"",
"compile": "bun run ./packages/opencode/scripts/compile.ts",
"dev:web": "bun --cwd packages/web dev",
"build:web": "bun --cwd packages/web build",
"deploy:web": "bun run build:web && npx wrangler pages deploy packages/web/dist --project-name kompass-web",
"publish:opencode": "npm publish ./packages/opencode --access public",
"typecheck": "tsc -p packages/core/tsconfig.json --noEmit && tsc -p packages/opencode/tsconfig.json --noEmit && bun --cwd packages/web astro check",
"test": "bun test packages/core/test && node --test packages/opencode/test/*.test.ts"
},
"devDependencies": {
"@types/node": "^25.3.5",
"typescript": "^5.4.0"
}
}