mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Adding 'prepare' commands to cluster-settings package Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Remove unused "lint" command from cluster-settings package Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> --------- Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
34 lines
933 B
JSON
34 lines
933 B
JSON
{
|
|
"name": "@k8slens/cluster-settings",
|
|
"version": "6.5.0-alpha.1",
|
|
"description": "Injection token exporter for cluster settings configuration",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"mode": "production",
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist/",
|
|
"generate-types": "tsc --d --declarationDir ./dist --declarationMap --emitDeclarationOnly",
|
|
"build": "npm run generate-types && swc ./src/index.ts -d ./dist",
|
|
"prepare": "npm run build",
|
|
"prepare:dev": "npm run build",
|
|
"prepare:test": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@ogre-tools/injectable": "^15.1.2",
|
|
"@swc/cli": "^0.1.61",
|
|
"@swc/core": "^1.3.37",
|
|
"@types/node": "^16.18.11",
|
|
"@types/semver": "^7.3.13",
|
|
"rimraf": "^4.1.2"
|
|
}
|
|
}
|