generated from ModDota/TypeScriptAddonTemplate
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
34 lines (34 loc) · 1.17 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
{
"name": "dota_reimagined",
"private": true,
"scripts": {
"postinstall": "node scripts/install.js",
"launch": "node scripts/launch.js",
"build": "run-p build:*",
"build:panorama": "tsc --project content/panorama/scripts/custom_game/tsconfig.json",
"build:vscripts": "tstl --project game/scripts/vscripts/tsconfig.json",
"dev": "run-p dev:*",
"dev:panorama": "tsc --project content/panorama/scripts/custom_game/tsconfig.json --watch",
"dev:vscripts": "tstl --project game/scripts/vscripts/tsconfig.json --watch",
"dev:localizationCompiler": "tsc --project game/resource/tsconfig.json --watch",
"dev:localizationCompilerWatcher": "tsc --project game/resource/tsconfig.json",
"dev:runlocalizationWatcher": "node fsWatcher.js"
},
"devDependencies": {
"@moddota/dota-lua-types": "^4.6.1",
"@types/node": "^14.14.22",
"fs-extra": "^9.1.0",
"npm-run-all": "^4.1.5",
"stylelint-config-standard": "^20.0.0",
"ts-node": "^9.1.1",
"typescript-to-lua": "^0.39.3"
},
"dependencies": {
"@moddota/panorama-types": "^1.6.1",
"find-steam-app": "^1.0.2",
"link-module-alias": "^1.2.0",
"node-watch": "^0.7.1",
"postcss": "^8.2.15",
"valve-kv": "^1.1.0"
}
}