-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "screeps-autonomous-framework",
"version": "1.0.0",
"description": "Screeps World Autonomous Bot Framework Base",
"author": "admon84",
"homepage": "https://admon84.github.io/screeps-autonomous-framework/",
"repository": "github:admon84/screeps-autonomous-framework",
"bugs": "https://github.com/admon84/screeps-autonomous-framework/issues",
"license": "Unlicense",
"main": "src/main.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"lint-fix": "npm run lint -- --fix",
"format": "prettier src/**/*.ts --write",
"build": "rollup -c",
"push-main": "rollup -c --environment DEST:main",
"push-season": "rollup -c --environment DEST:season",
"push-pserver": "rollup -c --environment DEST:pserver",
"push-sim": "rollup -c --environment DEST:sim",
"watch-sim": "rollup -cw --environment DEST:sim"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/lodash": "3.10.9",
"@types/node": "^22.13.1",
"@types/screeps": "^3.3.8",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"prettier-plugin-organize-imports": "^4.1.0",
"rollup": "2.79.1",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-screeps-world": "^1.0.4",
"rollup-plugin-typescript2": "^0.36.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"dependencies": {
"source-map": "0.6.1"
}
}