-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 969 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
37
{
"name": "wc3-ttay-ts-template",
"version": "1.0.1",
"description": "",
"author": "ttay24",
"license": "MIT",
"main": "src/main.ts",
"scripts": {
"test": "npm run build && node bin/operations run",
"build": "echo Transpiling TypeScript to Lua... && tstl -p tsconfig.json && node bin/operations build",
"dev": "npm-watch",
"install": "cd src && npm install",
"remove": "cd src && npm remove",
"build:defs": "node bin/operations gen-defs"
},
"watch": {
"build:defs": {
"patterns": [
"./maps/*"
],
"extensions": "lua",
"legacyWatch": true
}
},
"devDependencies": {
"@types/node": "^12.0.2",
"fs-extra": "^8.1.0",
"lua-types": "^2.6.1",
"luamin": "^1.0.4",
"npm-watch": "^0.6.0",
"ts-transformer-imports": "^0.4.3",
"typescript-to-lua": "^0.28.1",
"typescript-transform-paths": "^1.1.13",
"war3-types": "^1.0.0",
"war3tstlhelper": "^1.0.0"
}
}