hosts-switch/package.json

52 lines
1.0 KiB
JSON
Raw Normal View History

2019-08-30 19:24:42 +08:00
{
"name": "dns-host",
2021-06-29 09:57:41 +08:00
"version": "1.2.2",
2019-08-30 19:24:42 +08:00
"description": "伪域名解析",
2019-11-08 19:25:51 +08:00
"main": "src/main.js",
2019-08-30 19:24:42 +08:00
"scripts": {
2022-07-13 20:22:24 +08:00
"start": "electron ."
2019-08-30 19:24:42 +08:00
},
"author": {
"name": "yutent",
"email": "yutent@doui.cc"
},
2019-12-03 17:59:55 +08:00
"homepage": "https://yutent.me",
2019-08-30 19:24:42 +08:00
"license": "MIT",
"dependencies": {
2020-06-01 15:50:48 +08:00
"iofs": "^1.3.2"
2019-08-30 19:24:42 +08:00
},
"build": {
"appId": "dns.host",
"productName": "dns-host",
"copyright": "Copyright © 2019 ${author}",
"directories": {
"buildResources": "icons",
"output": "build"
},
2021-06-29 09:57:41 +08:00
"electronDownload": {
2021-06-29 10:16:48 +08:00
"version": "9.4.4",
2021-06-29 09:57:41 +08:00
"mirror": "https://npm.taobao.org/mirrors/electron/"
},
2022-07-13 20:22:24 +08:00
"files": [
"src/**/*",
"node_modules/iofs/*"
],
2019-08-30 19:24:42 +08:00
"mac": {
2019-12-03 17:59:55 +08:00
"category": "public.app-category.developer-tools",
2019-08-30 19:24:42 +08:00
"target": "dmg",
"icon": "icons/app.icns",
"darkModeSupport": false
},
"linux": {
"category": "Development",
"target": [
{
"target": "deb",
"arch": "x64"
}
],
"icon": "./icons/"
}
}
}