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

63 lines
1.3 KiB
JSON
Raw Normal View History

2018-12-26 23:58:24 +08:00
{
2022-09-12 19:06:56 +08:00
"name": "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": {
2022-09-12 19:06:56 +08:00
"start": "electron ."
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",
2022-09-12 19:06:56 +08:00
"music-metadata": "^7.5.0"
2018-12-26 23:58:24 +08:00
},
2019-01-19 04:33:34 +08:00
"build": {
2022-09-12 19:06:56 +08:00
"appId": "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/*",
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
}
}