-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.62 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "katajigo",
"version": "1.0.2",
"description": "",
"bin": "src/main.js",
"main": "src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier \"./**/*.{js,md}\" --write",
"format-watch": "onchange \"./**/*.{js,md}\" -- prettier --write {{changed}}",
"build": "pkg . --targets node12 --out-path ./bin",
"build:win": "pkg . --targets node12-windows-x64 --out-path ./bin/katajigo-win",
"build:mac": "pkg . --targets node12-macos-x64 --out-path ./bin/katajigo-mac",
"build:linux": "pkg . --targets node12-linux-x64 --out-path ./bin/katajigo-linux",
"dist:win": "npm run build:win && mkdirp ./dist && cross-zip ./bin/katajigo-win ./dist/katajigo-win.zip",
"dist:mac": "npm run build:mac && mkdirp ./dist && cross-zip ./bin/katajigo-mac ./dist/katajigo-mac.zip",
"dist:linux": "npm run build:linux && mkdirp ./dist && cross-zip ./bin/katajigo-linux ./dist/katajigo-linux.zip",
"dist:all": "npm run dist:win && npm run dist:mac && npm run dist:linux"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yishn/KataJigo.git"
},
"author": "Yichuan Shen",
"license": "MIT",
"bugs": {
"url": "https://github.com/yishn/KataJigo/issues"
},
"homepage": "https://github.com/yishn/KataJigo#readme",
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": false,
"proseWrap": "always"
},
"dependencies": {
"@sabaki/gtp": "^3.0.0"
},
"devDependencies": {
"cross-zip-cli": "^1.0.0",
"mkdirp": "^1.0.3",
"onchange": "^6.1.0",
"pkg": "^4.4.4",
"prettier": "1.19.1"
}
}