-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@freelensapp/freelens-node-pod-menu",
"version": "1.0.0",
"description": "Node and pod menus for FreeLens (deprecated)",
"repository": {
"type": "git",
"url": "git+https://github.com/freelensapp/freelens-node-pod-menu.git",
"directory": "."
},
"renderer": "dist/renderer.js",
"engines": {
"node": ">= 16.14.2",
"freelens": "^1.0.0"
},
"copyright": "© 2024-2025 Freelens Authors",
"license": "MIT",
"author": {
"name": "Freelens Authors",
"email": "[email protected]"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "npm run clean && npx webpack",
"clean": "rm -rf ./dist",
"dev": "npx webpack -- --watch",
"lint": "npx eslint .",
"test": "npx jest --passWithNoTests --env=jsdom src "
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@freelensapp/extensions": "^1.0.0",
"@types/node": "16.18.126",
"@types/react": "19.0.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.31.0",
"ts-loader": "^9.4.2",
"typescript": "5.7.3",
"webpack-cli": "^6.0.0"
},
"keywords": [
"node",
"pod",
"menu",
"extension",
"freelensapp",
"lens",
"openlens",
"freelens"
]
}