-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 750 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 750 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
{
"name": "grepolisbot",
"version": "2.1.0",
"private": true,
"description": "Modernized Tampermonkey bot for Grepolis — TypeScript, Preact, 6 automation modules",
"type": "module",
"scripts": {
"build": "node tooling/build.mjs",
"build:watch": "node tooling/build.mjs --watch",
"typecheck": "npx tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier . --write",
"prebuild": "npm run typecheck"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@preact/signals": "^2.0.3",
"preact": "^10.26.4"
}
}