blend/blend-settings/package.json

46 lines
1.1 KiB
JSON
Raw Normal View History

2023-02-11 06:03:29 -06:00
{
"name": "blend-settings",
"version": "2.0.0",
2023-02-11 06:03:29 -06:00
"description": "A settings app for blendOS",
"main": "main.js",
"homepage": "https://blendos.org",
"author": "Rudra Saraswat",
"license": "GPL-3.0-or-later",
"scripts": {
"start": "electron .",
2023-02-11 07:02:49 -06:00
"icons": "electron-icon-maker --input=./static/icon.png --output=./build/",
2023-04-10 23:54:31 -05:00
"electron-builder": "electron-builder",
2023-02-11 06:03:29 -06:00
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"dependencies": {
2023-06-24 00:13:36 -05:00
"@electron/remote": "^2.0.10",
2023-02-11 06:03:29 -06:00
"@types/jquery": "^3.5.16",
"jquery": "^3.6.3",
"js-yaml": "^4.1.0",
"node-pty": "github:daniel-brenot/node-pty#rust-port",
"sortablejs": "^1.15.0",
"xterm": "^5.1.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-ligatures": "^0.6.0"
},
"devDependencies": {
2023-02-11 07:02:49 -06:00
"electron": "^23.0.0",
2023-06-24 00:13:36 -05:00
"electron-builder": "^23.6.0",
"electron-icon-maker": "^0.0.5"
2023-02-11 06:41:35 -06:00
},
"build": {
"appId": "org.blend.settings",
"productName": "blendOS Settings",
"asar": true,
"linux": {
2023-06-24 00:13:36 -05:00
"target": [
"tar.gz"
],
2023-02-11 06:41:35 -06:00
"category": "System",
2023-02-11 07:03:37 -06:00
"icon": "icons/png",
2023-02-11 06:41:35 -06:00
"maintainer": "Rudra Saraswat"
}
2023-02-11 06:03:29 -06:00
}
}