-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.16 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
{
"name": "aimgr",
"version": "0.0.0",
"private": true,
"type": "module",
"bin": {
"aimgr": "./bin/aimgr.js",
"aim": "./bin/aimgr.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"install:local": "./scripts/install-local-bin.sh",
"codex-watch:install": "bash ./scripts/install-codex-watch.sh",
"codex-watch:status": "bash ./scripts/install-codex-watch.sh --status",
"codex-watch:uninstall": "bash ./scripts/install-codex-watch.sh --uninstall",
"hermes-watch:install": "bash ./scripts/install-hermes-watch.sh",
"hermes-watch:status": "bash ./scripts/install-hermes-watch.sh --status",
"hermes-watch:uninstall": "bash ./scripts/install-hermes-watch.sh --uninstall",
"lint": "find ./bin ./src ./test -type f -name '*.js' -print0 | xargs -0 -n1 node --check",
"test": "find ./test -type f -name '*.test.js' -print0 | xargs -0 node --test",
"test:coverage": "find ./test -type f -name '*.test.js' -print0 | xargs -0 node --test --experimental-test-coverage --test-coverage-include='src/**/*.js' --test-coverage-include='bin/**/*.js'"
},
"dependencies": {
"@mariozechner/pi-ai": "0.55.1",
"yaml": "^2.8.3"
}
}