-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "gateinitiative",
"version": "1.0.0",
"description": "Standalone filesystem-watcher enforcement daemon. IDE-agnostic, VCS-agnostic, CLI-agnostic. The gate initiative for AI-driven development.",
"type": "module",
"bin": {
"gateinit": "./bin/gateinit.mjs"
},
"main": "./src/index.mjs",
"exports": {
".": "./src/index.mjs",
"./package.json": "./package.json"
},
"files": [
"bin/",
"src/",
"!src/**/*.test.mjs",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"start": "node bin/gateinit.mjs start",
"stop": "node bin/gateinit.mjs stop",
"restart": "node bin/gateinit.mjs restart",
"status": "node bin/gateinit.mjs status",
"watch": "node bin/gateinit.mjs watch",
"check": "node bin/gateinit.mjs check",
"test": "bun test src/"
},
"dependencies": {
"chokidar": "^4.0.0",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "bun@1.3.5",
"keywords": [
"gateinitiative",
"gate-init",
"gate-init-initiative",
"enforcement",
"file-watcher",
"gates",
"policy",
"linting",
"agent-rules",
"daemon",
"ai-coding",
"outcome-level"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Brimstow/gateINITIATIVE.git"
},
"homepage": "https://github.com/Brimstow/gateINITIATIVE#readme",
"bugs": {
"url": "https://github.com/Brimstow/gateINITIATIVE/issues"
}
}