-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 936 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 936 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
{
"name": "@josheche/statusmon",
"version": "0.1.5",
"type": "module",
"description": "Train a Pokemon companion across your Claude Code sessions",
"license": "MIT",
"dependencies": {
"pngjs": "^7.0.0",
"pokedex-promise-v2": "^4.2.1"
},
"devDependencies": {
"esbuild": "^0.24.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"vitest": "^3.0.0"
},
"scripts": {
"build": "node build.mjs",
"test": "vitest run",
"test:sprite": "node lib/sprite.mjs",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky",
"version": "node scripts/sync-version.mjs && git add .claude-plugin/",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push && git push --tags"
},
"lint-staged": {
"*.mjs": [
"prettier --write",
"eslint --fix"
]
}
}