-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "toa",
"version": "0.0.1",
"description": "シンプルなミュージックプレイヤー「兎亜」",
"main": "src/bin/js/core.js",
"scripts": {
"start": "electron .",
"build": "gulp",
"watch": "gulp watch",
"package:mac": "npx electron-packager . toa --out=__release__ --platform=darwin --arch=x64 --icon=icons/icon.icns --overwrite",
"package:win": "npx electron-packager . toa --out=__release__ --platform=win32 --arch=x64 --icon=icons/icon.ico --overwrite",
"package:linux": "npx electron-packager . toa --out=__release__ --platform=linux --arch=x64 --icon=icons/icon.icns --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuki540net/toa.git"
},
"keywords": [
"music",
"toa",
"兎亜"
],
"author": "yuki540",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuki540net/toa/issues"
},
"homepage": "https://github.com/yuki540net/toa#readme",
"devDependencies": {
"coffee-script": "^1.12.7",
"electron": "^1.6.2",
"electron-packager": "^8.6.0",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.4",
"gulp-jade": "^1.1.0",
"gulp-plumber": "^1.1.0",
"gulp-riot": "^1.1.0",
"gulp-uglify": "^2.1.2",
"riot": "^3.9.0"
},
"dependencies": {}
}