1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/utility-features/json-api/package.json
Sebastian Malton 79e4eaa394 Release 6.5.0
Signed-off-by: Sebastian Malton <sebastian@malton.name>
2023-05-26 14:00:45 -04:00

52 lines
1.2 KiB
JSON

{
"name": "@k8slens/json-api",
"private": false,
"version": "1.0.0",
"description": "JSON api client",
"type": "commonjs",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lensapp/lens.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "OpenLens Authors",
"email": "info@k8slens.dev"
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"scripts": {
"build": "webpack",
"clean": "rimraf dist/",
"dev": "webpack --mode=development --watch",
"test": "jest --coverage --runInBand",
"lint": "lens-lint",
"lint:fix": "lens-lint --fix"
},
"dependencies": {
"@k8slens/node-fetch": "^6.5.0"
},
"peerDependencies": {
"@k8slens/event-emitter": "^1.0.0-alpha.1",
"@k8slens/logger": "^1.0.0-alpha.5",
"@k8slens/utilities": "^1.0.0-alpha.1",
"lodash": "^4.17.15",
"rfc6902": "^5.0.1"
},
"devDependencies": {
"@k8slens/eslint-config": "^6.5.0",
"@k8slens/jest": "^6.5.0",
"@k8slens/typescript": "^6.5.0",
"@types/node": "^16.18.25",
"type-fest": "^2.14.0"
}
}