-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 763 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 763 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
{
"name": "screeps-chinese-pack",
"version": "1.0.0",
"source": "src/main.ts",
"main": "dist/screeps-chinese-pack.user.js",
"license": "MIT",
"scripts": {
"start": "parcel --no-source-maps --no-cache",
"build": "rimraf ./dist && parcel build --no-source-maps --no-cache --cache-dir ./.parcel-cache",
"watch": "parcel watch --no-source-maps --no-cache",
"buildPlugin": "tsc --project ./plugin/src/tsconfig.json"
},
"devDependencies": {
"@parcel/config-default": "^2.13.3",
"@parcel/plugin": "^2.13.3",
"@parcel/transformer-typescript-tsc": "^2.13.3",
"@parcel/types": "^2.13.3",
"parcel": "^2.13.3",
"typescript": "^5.8.2"
},
"dependencies": {
"@types/node": "^22.13.8",
"rimraf": "^6.0.1"
}
}