-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "code-mind",
"private": true,
"scripts": {
"postinstall": "cd frontend && npm install",
"dev": "concurrently -k -n api,web \"npm run dev:api\" \"npm run dev:web\"",
"dev:api": "go run . serve",
"dev:web": "cd frontend && npm run dev",
"build": "npm run build:web && npm run build:go",
"build:web": "cd frontend && npm run build",
"build:go": "go build ./...",
"build:desktop": "powershell -ExecutionPolicy Bypass -File scripts/package-desktop.ps1",
"build:claude-mind": "powershell -ExecutionPolicy Bypass -File scripts/package-claude-mind.ps1",
"build:vsix": "powershell -ExecutionPolicy Bypass -File scripts/package-vscode-extension.ps1 -SkipInstall",
"build:vsix:full": "powershell -ExecutionPolicy Bypass -File scripts/package-vscode-extension.ps1",
"test": "go test ./... && npm run build:web",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9.1.7"
}
}