-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "Shuvi",
"version": "0.0.1",
"description": "Electron製のYouTubeプレイヤー「Shuvi」",
"main": "src/bin/js/bin.js",
"scripts": {
"start": "electron .",
"build": "gulp",
"watch": "gulp watch",
"package:mac": "electron-packager . Shuvi --out=__release__ --platform=darwin --arch=x64 --icon=icons/icon.icns --overwrite",
"package:win": "electron-packager . Shuvi --out=__release__ --platform=win32 --arch=x64 --icon=icons/icon.ico --overwrite",
"package:linux": "electron-packager . Shuvi --out=__release__ --platform=linux --arch=x64 --icon=icons/icon.icns --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuki540net/yui.git"
},
"keywords": [
"Electron",
"Shuvi",
"YouTube"
],
"author": "yuki540",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuki540net/Shuvi/issues"
},
"homepage": "https://github.com/yuki540net/Shuvi#readme",
"dependencies": {
"coffee-script": "^1.12.5",
"electron": "^1.6.6",
"electron-packager": "^8.7.0",
"express": "^4.15.2",
"riot": "^3.4.4",
"youtube-node": "^1.3.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.4",
"gulp-jade": "^1.1.0",
"gulp-plumber": "^1.1.0",
"gulp-riot": "^1.1.1",
"gulp-uglify": "^2.1.2"
}
}