-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.15 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
{
"name": "cmd-mod-jev-nudge",
"version": "0.1.0",
"description": "Command Code mod: nudges the agent to keep going when it stops with work left, judged by Jev",
"keywords": [
"command-code",
"commandcode",
"cmd",
"mod",
"jev",
"typesafe",
"stop-hook",
"agent"
],
"license": "MIT",
"author": "Ahmad Awais <me@ahmadawais.com>",
"homepage": "https://github.com/CommandCodeAI/cmd-mod-jev-nudge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CommandCodeAI/cmd-mod-jev-nudge.git"
},
"bugs": "https://github.com/CommandCodeAI/cmd-mod-jev-nudge/issues",
"type": "module",
"commandcode": {
"mods": [
"./src/index.ts"
]
},
"files": [
"src",
"!src/__tests__",
"README.md"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"prepublishOnly": "pnpm typecheck && pnpm test"
},
"dependencies": {
"zod": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/node": "^22.0.0",
"typescript": "^5.9.2",
"vitest": "^4.1.11"
}
}