-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"name": "genesis-governance",
"version": "2.0.0",
"description": "A local-first governed business lifecycle CLI with append-only evidence and human approval gates.",
"private": true,
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/zee-cpu/Genesis.git"
},
"homepage": "https://github.com/zee-cpu/Genesis#readme",
"bugs": {
"url": "https://github.com/zee-cpu/Genesis/issues"
},
"keywords": [
"governance",
"business-lifecycle",
"experiments",
"approval-workflow",
"cli"
],
"files": [
"bin/",
"src/application/",
"src/cli/",
"src/core/",
"src/security/",
"src/storage/",
"src/sync/",
"docs/security/",
"config/",
"schemas/",
"templates/",
"genesis.yaml",
"README.md",
"Genesis.md",
"Genesis Configuration.md",
"CHANGELOG.md",
"RELEASING.md",
"LICENSE",
"NOTICE"
],
"engines": {
"node": ">=22"
},
"bin": {
"genesis": "./bin/genesis.mjs"
},
"scripts": {
"start": "node bin/genesis.mjs",
"validate": "node scripts/validate-genesis.mjs",
"test": "node --test tests/*.test.mjs",
"check": "npm run validate && npm test",
"pack:preview": "npm pack --dry-run",
"release:verify": "node scripts/verify-package.mjs",
"web:dev": "npm --prefix apps/operator-console run dev",
"web:build": "npm --prefix apps/operator-console run build",
"web:test": "npm --prefix apps/operator-console test",
"check:web": "npm run web:test && npm run web:build",
"web:start": "npm --prefix apps/operator-console run start",
"web:seed-demo": "node apps/operator-console/scripts/seed-demo-workspace.mjs",
"offer:payment:build": "node business/offers/agent-configuration-repair/payment/build-payment-page.mjs"
},
"dependencies": {
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"better-sqlite3": "12.11.1",
"qrcode": "^1.5.4",
"yaml": "2.8.3"
}
}