-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 960 Bytes
/
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
{
"name": "zackysh-screeps-scripts",
"version": "1.0",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest",
"lint": "eslint src/**/*.{js,ts}",
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/chai": "^4.3.11",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/screeps": "^3.3.7",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"chai": "^4.3.10",
"jest": "^29.7.0",
"rollup": "^4.7.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"source-map": "~0.7.4"
}
}