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>
36 lines
847 B
JSON
36 lines
847 B
JSON
{
|
|
"name": "@k8slens/bump-version-for-cron",
|
|
"version": "6.5.0-alpha.1",
|
|
"description": "CLI to bump the version to during a cron daily alpha release",
|
|
"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"
|
|
},
|
|
"type": "module",
|
|
"bin": "./dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"dependencies": {
|
|
"arg": "^5.0.2",
|
|
"semver": "^7.3.8"
|
|
},
|
|
"devDependencies": {
|
|
"@swc/cli": "^0.1.61",
|
|
"@swc/core": "^1.3.44",
|
|
"@types/node": "^16.18.11",
|
|
"@types/semver": "^7.3.13",
|
|
"rimraf": "^4.4.1",
|
|
"run-script-os": "^1.1.6"
|
|
}
|
|
}
|