-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 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
{
"name": "tweego-bin",
"author": "double-a-stories",
"license": "MIT-0",
"version": "0.4.0",
"description": "Distribute and install Go binaries via NPM",
"bin": {
"tweego": "./bin/tweego",
"storyformats": "./bin/storyformats"
},
"os": [
"win32",
"linux",
"darwin"
],
"scripts": {
"build": "esbuild --bundle src/install.mjs --outfile=\"./dist/install.js\" --platform=node --target=node12 --minify-whitespace",
"prepare": "npm run build && rm -rf bin/* && echo Shim file > bin/tweego && mkdir bin/storyformats && touch bin/storyformats/_empty",
"install": "node ./dist/install.js"
},
"repository": {
"type": "git",
"url": "https://github.com/double-a-stories/tweego-bin.git"
},
"homepage": "https://github.com/double-a-stories/tweego-bin",
"devDependencies": {
"axios": "^0.24.0",
"esbuild": "^0.12.17",
"unzipper": "0.10.10"
}
}