-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 918 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 918 Bytes
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
{
"name": "devrage",
"version": "0.5.7",
"description": "Count how many times you swear at your coding agents",
"type": "module",
"bin": {
"devrage": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"start": "node dist/cli.js",
"build": "node build.js",
"dev": "node build.js --watch",
"test": "npm run build && node --test test/*.test.mjs",
"typecheck": "tsc --noEmit",
"lint": "oxlint src/",
"format": "oxfmt --check src/"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.6.1",
"esbuild": "^0.25.0",
"oxfmt": "^0.54.0",
"oxlint": "^0.16.0",
"typescript": "^5.8.0"
},
"dependencies": {
"better-sqlite3": "^11.0.0"
}
}