1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/release-tool/package.json
Sebastian Malton 3aa6c1666a chore: Remove most uses of "bin" from workspaces
- Replace with running scripts from a specific workspace

Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-04-14 14:42:00 -04:00

28 lines
632 B
JSON

{
"name": "@k8slens/release-tool",
"version": "6.5.0-alpha.3",
"description": "Release tool for lens monorepo",
"main": "dist/index.mjs",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf dist/",
"build": "swc ./src/index.ts -d ./dist",
"create": "./dist/index.js"
},
"type": "module",
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.44",
"@types/inquirer": "^9.0.3",
"@types/node": "^16.18.11",
"@types/semver": "^7.3.13",
"rimraf": "^4.4.1"
},
"dependencies": {
"chalk": "^5.2.0",
"inquirer": "^9.1.4",
"semver": "^7.3.8"
}
}