-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 808 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 808 Bytes
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
{
"name": "oh-my-agent-workspace",
"version": "8.16.0",
"private": true,
"workspaces": [
"cli",
"web"
],
"scripts": {
"build": "bun run --cwd cli build",
"dev": "bun run --cwd cli dev",
"lint": "bun run --cwd cli lint",
"lint:fix": "bun run --cwd cli lint:fix",
"prepare": "husky",
"sns:devto": "bun scripts/sns/devto/index.ts",
"test": "bun run --cwd cli test",
"typecheck": "bunx tsc --noEmit -p tsconfig.json && bunx tsc --noEmit -p web/tsconfig.json",
"web:dev": "bun run --cwd web dev",
"web:build": "bun run --cwd web build"
},
"overrides": {
"@types/node": "^24"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"husky": "9.1.7"
}
}