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

68 lines
1.4 KiB
JSON
Raw Normal View History

2018-12-26 23:58:24 +08:00
{
2020-11-16 11:22:17 +08:00
"name": "top.yutent.sonist",
2020-11-18 16:32:33 +08:00
"version": "2.0.0-alpha-2",
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
},
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": {
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",
"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/*",
"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": {
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
}
}