This repository has been archived on 2023-08-30. You can view files and clone it, but cannot push or open issues/pull-requests.
appcat
/
sonist
Archived
1
0
Fork 0
sonist/package.json

70 lines
1.4 KiB
JSON
Raw Normal View History

2018-12-26 23:58:24 +08:00
{
2019-01-19 04:34:08 +08:00
"name": "sonist",
2019-02-05 00:01:54 +08:00
"version": "1.1.0",
2018-12-26 23:58:24 +08:00
"description": "Music Player",
2019-01-19 02:59:52 +08:00
"main": "src/main.js",
2018-12-26 23:58:24 +08:00
"scripts": {
2019-01-19 04:33:34 +08:00
"start": "electron .",
"pack": "electron-builder"
2018-12-26 23:58:24 +08:00
},
2019-01-26 01:48:42 +08:00
"author": {
"name": "yutent",
"email": "yutent@doui.cc"
},
2019-01-19 04:53:39 +08:00
"homepage": "https://yutent.me",
2018-12-27 00:00:22 +08:00
"license": "MIT",
2018-12-26 23:58:24 +08:00
"dependencies": {
2019-01-19 04:33:34 +08:00
"crypto.js": "^1.2.0",
2018-12-26 23:58:24 +08:00
"iofs": "^1.1.0"
},
"devDependencies": {
2019-01-26 01:48:42 +08:00
"electron": "^4.0.2",
2019-01-19 04:33:34 +08:00
"electron-builder": "^20.38.5"
},
"build": {
"appId": "cc.doui.sonist",
"productName": "Sonist",
2019-01-19 04:34:08 +08:00
"copyright": "Copyright © 2019 ${author}",
2019-01-19 04:33:34 +08:00
"directories": {
2019-01-19 22:19:55 +08:00
"buildResources": "icons",
2019-01-19 04:33:34 +08:00
"output": "build"
},
2019-08-12 21:26:41 +08:00
"files": [
"src/**/*",
"node_modules/iofs/*",
"node_modules/crypto.js/*"
],
2019-01-19 04:33:34 +08:00
"mac": {
"category": "public.app-category.music",
"target": "dmg",
2019-01-19 04:34:08 +08:00
"icon": "icons/app.icns",
"darkModeSupport": false
2019-01-19 04:33:34 +08:00
},
"linux": {
"category": "AudioVideo;Audio;Player;Music",
"target": [
{
"target": "deb",
"arch": "x64"
},
{
"target": "AppImage",
"arch": "x64"
}
],
2019-01-19 22:19:55 +08:00
"icon": "./icons/"
2019-01-19 04:33:34 +08:00
},
"deb": {
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"ffmpeg"
]
}
2018-12-26 23:58:24 +08:00
}
}