-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 893 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
38
39
40
41
{
"name": "haax-mpq",
"version": "1.1.5",
"author": "Haaxor1689",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Haaxor1689/haax-mpq.git"
},
"main": "./dist/index.js",
"bin": "./dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"dev": "ts-node ./src/index.ts",
"bundle": "run-script-os",
"bundle:win32": "tsc && pkg -t win .",
"bundle:linux": "tsc && pkg -t linux ."
},
"devDependencies": {
"@types/node": "^20.8.10",
"pkg": "^5.8.1",
"run-script-os": "^1.1.6",
"ts-node": "^10.9.1",
"typescript": "5.2.2"
},
"dependencies": {
"anymatch": "^3.1.3",
"stormlib-node": "^1.3.6"
},
"pkg": {
"scripts": [
"dist/*.js"
],
"assets": [
"./node_modules/stormlib-node/dist/stormlib.node",
"./node_modules/stormlib-node/dist/StormLib.dll"
]
}
}