-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.71 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
48
{
"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 --ext .ts",
"lint-fix": "npm run lint -- --fix",
"prettier": "prettier src --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": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/lodash": "3.10.9",
"@types/node": "^20.10.7",
"@types/screeps": "^3.3.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/typescript-estree": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"rollup": "2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-screeps-world": "^1.0.4",
"rollup-plugin-typescript2": "^0.36.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"source-map": "0.6.1"
}
}