-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·94 lines (94 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·94 lines (94 loc) · 2.73 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sp-devcontrol",
"version": "2.1.0",
"description": "Local governance layer for AI-assisted development — human authorization gates, policy enforcement, change approval, rollback, compliance and universal MCP integration",
"type": "module",
"bin": {
"sp-devcontrol": "./dist/cli.js",
"devcontrol": "./dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "node dist/cli.js",
"build": "tsc",
"start": "node dist/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test",
"bundle": "esbuild dist/cli.js --bundle --platform=node --target=node18 --format=cjs --outfile=bundle/cli-full.cjs --define:import.meta.url='\"file:///snapshot/cli.cjs\"' --log-level=warning",
"pkg:linux": "npm run bundle && npx @yao-pkg/pkg bundle/cli-full.cjs --target node18-linux-x64 --output release/devcontrol-linux-x64",
"pkg:linux-arm": "npm run bundle && npx @yao-pkg/pkg bundle/cli-full.cjs --target node18-linux-arm64 --output release/devcontrol-linux-arm64",
"pkg:win": "npm run bundle && npx @yao-pkg/pkg bundle/cli-full.cjs --target node18-win-x64 --output release/devcontrol-win-x64.exe",
"pkg:all": "npm run build && bash scripts/build-binaries.sh",
"deploy:cluster": "bash scripts/deploy-cluster.sh"
},
"pkg": {
"assets": [
"dist/**/*"
],
"outputPath": "release"
},
"author": {
"name": "Pedro Rojas",
"email": "pedro@solucionespro.com",
"url": "https://github.com/pedro-rojas"
},
"contributors": [
"SolucionesPro <info@solucionespro.com> (https://solucionespro.com)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PRojas01/sp-devcontrol.git"
},
"keywords": [
"governance",
"ai-development",
"cli",
"devops",
"code-quality",
"security",
"compliance",
"agentic",
"cursor",
"claude",
"copilot"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"better-sqlite3": "^12.11.1",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"diff": "^8.0.2",
"execa": "^9.5.2",
"express": "^4.21.2",
"inquirer": "^12.5.2",
"simple-git": "^3.27.0",
"ws": "^8.18.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/diff": "^7.0.0",
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.14",
"@yao-pkg/pkg": "^5.16.1",
"esbuild": "^0.28.1",
"typescript": "^5.7.3",
"vitest": "^3.2.3"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}