2018-12-26 23:58:24 +08:00
|
|
|
{
|
2020-11-16 11:22:17 +08:00
|
|
|
"name": "top.yutent.sonist",
|
2020-12-13 22:08:25 +08:00
|
|
|
"version": "2.0.0-alpha-4",
|
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",
|
2020-11-16 11:22:17 +08:00
|
|
|
"email": "yutent.io@gmail.com"
|
2019-01-26 01:48:42 +08:00
|
|
|
},
|
2020-11-20 18:23:53 +08:00
|
|
|
"homepage": "https://yutent.top",
|
2018-12-27 00:00:22 +08:00
|
|
|
"license": "MIT",
|
2018-12-26 23:58:24 +08:00
|
|
|
"dependencies": {
|
2020-11-16 11:22:17 +08:00
|
|
|
"crypto.js": "^2.0.2",
|
2020-11-18 16:32:33 +08:00
|
|
|
"iofs": "^1.5.1",
|
2020-11-18 18:32:20 +08:00
|
|
|
"music-metadata": "^7.5.0",
|
2020-11-18 16:32:33 +08:00
|
|
|
"sqlite3": "^5.0.0"
|
2018-12-26 23:58:24 +08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-11-16 11:22:17 +08:00
|
|
|
"electron": "^10.0.0",
|
2019-11-05 23:57:24 +08:00
|
|
|
"electron-builder": "^22.1.0"
|
2019-01-19 04:33:34 +08:00
|
|
|
},
|
|
|
|
"build": {
|
2020-11-16 11:22:17 +08:00
|
|
|
"appId": "top.yutent.sonist",
|
2019-01-19 04:33:34 +08:00
|
|
|
"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"
|
|
|
|
},
|
2020-11-16 11:22:17 +08:00
|
|
|
"electronDownload": {
|
|
|
|
"version": "10.1.5",
|
|
|
|
"mirror": "https://npm.taobao.org/mirrors/electron/"
|
|
|
|
},
|
2020-11-18 16:32:33 +08:00
|
|
|
"files": [
|
|
|
|
"src/**/*",
|
|
|
|
"node_modules/iofs/*",
|
|
|
|
"node_modules/sqlite3/*",
|
2020-11-23 22:39:19 +08:00
|
|
|
"node_modules/crypto.js/*",
|
|
|
|
"node_modules/music-metadata/*"
|
2020-11-18 16:32:33 +08:00
|
|
|
],
|
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": {
|
2020-11-17 19:03:09 +08:00
|
|
|
"depends": []
|
2019-01-19 04:33:34 +08:00
|
|
|
}
|
2018-12-26 23:58:24 +08:00
|
|
|
}
|
|
|
|
}
|