forked from gricha/devrage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.19 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
{
"name": "devlove",
"version": "0.0.3",
"description": "Count how many times you've been kind to your coding agents",
"type": "module",
"bin": {
"devlove": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node dist/cli.js",
"build": "node build.js",
"dev": "node build.js --watch",
"typecheck": "tsc --noEmit",
"lint": "oxlint src/",
"format": "oxfmt --check src/"
},
"keywords": [
"cli",
"claude",
"codex",
"cursor",
"opencode",
"amp",
"cline",
"zed",
"ai",
"coding-agents",
"kindness",
"love"
],
"author": "amianthus",
"license": "MIT",
"homepage": "https://github.com/SirTenzin/devlove#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/SirTenzin/devlove.git"
},
"bugs": {
"url": "https://github.com/SirTenzin/devlove/issues"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.1",
"esbuild": "^0.25.0",
"oxlint": "^0.16.0",
"typescript": "^5.8.0"
},
"dependencies": {
"better-sqlite3": "^11.0.0"
}
}