electron-tray2
Version:
Very simple package to add tray icon behaviour to an electron app
40 lines (39 loc) • 1.22 kB
JSON
{
"name": "electron-tray2",
"version": "1.0.3",
"description": "Very simple package to add tray icon behaviour to an electron app",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:types && babel --presets @babel/preset-env -s inline -o lib/index.js src/index.ts",
"build:types": "tsc src/index.ts --declaration --emitDeclarationOnly --outDir lib"
},
"keywords": [
"electron",
"tray",
"system",
"tray",
"icon"
],
"author": "George Stamate (GxGL) <stamate_george@yahoo.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/gxgl/electron-tray2.git"
},
"bugs": "https://github.com/gxgl/electron-tray2/issues",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.27.2",
"@babel/core": "^7.27.3",
"@babel/plugin-transform-class-properties": "^7.27.1",
"@babel/plugin-transform-object-rest-spread": "^7.27.3",
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"typescript": "^5.8.3",
"babel-plugin-add-module-exports": "^1.0.4"
},
"peerDependencies": {
"electron": "^36.3.1"
}
}