-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.07 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
{
"name": "tiled-gameboy-tool",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"test": "jest",
"test:node": "npx tsc && node build/index.js --enable-objects --output-dir dist --tiled assets/World1Area1.tmx",
"build": "npx tsc",
"build:package": "npm run build && npm run package",
"package": "npm run package:windows && npm run package:linux && npm run package:macos",
"package:windows": "pkg build/index.js -c package.json -t windows --output ./dist/windows/tiled-gameboy-tool.exe",
"package:linux": "pkg build/index.js -c package.json -t linux --output ./dist/linux/tiled-gameboy-tool",
"package:macos": "pkg build/index.js -c package.json -t mac --output ./dist/macos/tiled-gameboy-tool"
},
"pkg":{
"assets":[
"node_modules\\node-expat\\**",
"node_modules\\xml2json\\**"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"nexe": "^4.0.0-rc.2",
"xml2json": "^0.12.0"
},
"devDependencies": {
"jest": "^29.5.0",
"typescript": "^5.0.4"
}
}