hosts-switch/package.json

52 lines
1.1 KiB
JSON
Raw Normal View History

2019-08-30 19:24:42 +08:00
{
"name": "dns-host",
2019-12-03 18:33:31 +08:00
"version": "1.0.1",
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": {
"start": "electron .",
2019-11-08 19:25:51 +08:00
"pack": "electron-builder",
"pack:mac": "electron-builder --mac",
"pack:linux": "electron-builder --linux"
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": {
"iofs": "^1.2.1"
},
"build": {
"appId": "dns.host",
"productName": "dns-host",
"copyright": "Copyright © 2019 ${author}",
"directories": {
"buildResources": "icons",
"output": "build"
},
2019-09-16 21:00:37 +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/"
}
},
"devDependencies": {
2019-11-08 19:25:51 +08:00
"electron": "^7.1.0",
"electron-builder": "^22.0.0"
2019-08-30 19:24:42 +08:00
}
}