mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Get dev mode fixed Signed-off-by: Sebastian Malton <sebastian@malton.name> * Add empty scripts for windows to satisfy run-script-os Signed-off-by: Sebastian Malton <sebastian@malton.name> --------- Signed-off-by: Sebastian Malton <sebastian@malton.name>
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "@k8slens/generate-tray-icons",
|
|
"version": "6.5.0-alpha.1",
|
|
"description": "CLI generating tray icons for building a lens-like application",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rimraf dist/",
|
|
"build": "swc ./src/index.ts -d ./dist/",
|
|
"postbuild": "run-script-os",
|
|
"postbuild:windows": "",
|
|
"postbuild:nix": "chmod u+x ./dist/index.js",
|
|
"prepare:dev": "npm run build",
|
|
"prepare": "npm run build"
|
|
},
|
|
"bin": {
|
|
"generate-tray-icons": "./dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"devDependencies": {
|
|
"@swc/cli": "^0.1.61",
|
|
"@swc/core": "^1.3.44",
|
|
"@types/jsdom": "^20.0.1",
|
|
"@types/node": "^18.11.18",
|
|
"@types/sharp": "^0.31.1",
|
|
"rimraf": "^4.4.1",
|
|
"run-script-os": "^1.1.6"
|
|
},
|
|
"dependencies": {
|
|
"arg": "^5.0.2",
|
|
"jsdom": "^21.1.0",
|
|
"rimraf": "^4.4.1",
|
|
"sharp": "^0.31.3"
|
|
}
|
|
}
|