-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 827 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 827 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
{
"name": "@codemcp/workflows-cli",
"version": "6.13.0",
"description": "CLI tools for responsible-vibe development workflows",
"type": "module",
"scripts": {
"build": "tsup && pnpm copy-resources",
"copy-resources": "rm -rf resources && cp -r ../core/resources .",
"build:tsc": "tsc -p tsconfig.build.json",
"test": "vitest --run",
"clean:build": "rimraf ./dist",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format:check": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {},
"devDependencies": {
"@codemcp/workflows-core": "workspace:*",
"@codemcp/workflows-server": "workspace:*",
"@types/node": "^24.0.0",
"rimraf": "^5.0.10",
"tsup": "^8.0.0",
"typescript": "^6.0.0",
"vitest": "4.0.18"
},
"private": true
}