-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 925 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
{
"name": "flash-binary",
"author": "Matheus Neves",
"version": "1.0.0",
"description": "A simple flash binary generator",
"main": "build/index.js",
"license": "MIT",
"dependencies": {
"extract-dmg": "^1.0.0",
"minimist": "^1.2.5",
"sudo-prompt": "^9.2.1"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"start": "rimraf ./build && tsc && node build/index.js",
"build": "rimraf ./build && tsc && yarn copy-files && pkg build/index.js -c pkg-windows.json -o dist/flash-win-standalone.exe && pkg build/index.js -c pkg-linux.json -o dist/flash-linux-standalone && pkg build/index.js -c pkg-mac.json -o dist/flash-macos-standalone",
"copy-files": "cp -R 'assets' 'build'"
},
"bin": {
"flash": "build/index.js"
},
"devDependencies": {
"@types/node": "^20.2.3",
"copyfiles": "^2.4.1",
"pkg": "^5.8.1",
"rimraf": "^5.0.1"
}
}