forked from noskill-io/ffpr-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 913 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
{
"name": "ffpr-tool",
"version": "1.0.0",
"description": "Final Fantasy Pixel Remaster Tool",
"author": "exodus",
"license": "ISC",
"homepage": "https://github.com/jmroon/ffpr-tool#readme",
"bugs": {
"url": "https://github.com/jmroon/ffpr-tool/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmroon/ffpr-tool.git"
},
"main": "src/app.ts",
"bin": "dist/app.js",
"scripts": {
"build-js": "tsc --build",
"build-exe": "pkg .",
"build": "yarn build-js && yarn build-exe",
"test": "echo \"Error: no test specified\" && exit 1"
},
"pkg": {
"targets": [
"node14-windows-x64"
],
"outputPath": "dist/bin"
},
"devDependencies": {
"@types/prompts": "^2.0.14",
"pkg": "^5.3.2",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"prompts": "^2.4.1"
}
}