-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 866 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
{
"name": "sae",
"version": "0.0.3",
"repository": "https://github.com/DoctorRyner/sae.git",
"author": "DoctorRyner <drryner@icloud.com>",
"license": "MIT",
"bin": "build/exec/index.js",
"pkg": {
"assets": [
"./node_modules/glob",
"./node_modules/js-yaml"
]
},
"scripts": {
"mk-exe": "sae release && pkg . --target nodev16-macos-x64,nodev14-linux-x64,nodev14-win-x64 --out-path build/",
"install-mac": "sae release && pkg . --target nodev16-macos-x64 && sudo mv ./sae /usr/local/bin",
"install-mac-m1": "sae release && pkg . --target nodev16-macos-arm64 && sudo mv ./sae /usr/local/bin",
"install-linux": "sae release && pkg . --target nodev14-linux-x64 && sudo mv ./sae /usr/local/bin"
},
"dependencies": {
"glob": "^7.1.7",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"pkg": "^5.2.1"
}
}