-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.13 KB
/
package.json
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
{
"name": "screeps-arena-typescript-sample-bot",
"version": "0.1.0",
"description": "Screeps Arena TypeScript Sample Bot",
"repository": "github:admon84/screeps-arena-typescript-sample-bot",
"author": "admon84",
"private": true,
"license": "MIT",
"scripts": {
"build": "rollup -c --config-",
"watch": "rollup -cw --config-",
"check-types": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/node": "^22.10.2",
"@types/screeps-arena": "screepers/typed-screeps-arena#season-beta",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"fast-glob": "^3.3.2",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rollup": "^4.29.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.7.2"
}
}