@k8slens/hotbar-contracts 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +19 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +308 -0
- package/dist/src/add-to-hotbar.d.ts +54 -0
- package/dist/src/add-to-hotbar.d.ts.map +1 -0
- package/dist/src/eject-hotbar-item.d.ts +18 -0
- package/dist/src/eject-hotbar-item.d.ts.map +1 -0
- package/dist/src/get-hotbar-item-kind-injectable-bunch.d.ts +60 -0
- package/dist/src/get-hotbar-item-kind-injectable-bunch.d.ts.map +1 -0
- package/dist/src/has-hotbar-item.d.ts +27 -0
- package/dist/src/has-hotbar-item.d.ts.map +1 -0
- package/dist/src/hotbar-item-component.d.ts +44 -0
- package/dist/src/hotbar-item-component.d.ts.map +1 -0
- package/dist/src/hotbar-item-context-menu-item.d.ts +48 -0
- package/dist/src/hotbar-item-context-menu-item.d.ts.map +1 -0
- package/dist/src/hotbar-item-frame.d.ts +18 -0
- package/dist/src/hotbar-item-frame.d.ts.map +1 -0
- package/dist/src/hotbar-item-id.d.ts +6 -0
- package/dist/src/hotbar-item-id.d.ts.map +1 -0
- package/dist/src/hotbar-item-kind.d.ts +69 -0
- package/dist/src/hotbar-item-kind.d.ts.map +1 -0
- package/dist/src/hotbar-item-persisted-data.d.ts +33 -0
- package/dist/src/hotbar-item-persisted-data.d.ts.map +1 -0
- package/dist/src/hotbar-item.d.ts +12 -0
- package/dist/src/hotbar-item.d.ts.map +1 -0
- package/dist/src/insert-hotbar-item.d.ts +17 -0
- package/dist/src/insert-hotbar-item.d.ts.map +1 -0
- package/dist/src/is-in-hotbar.d.ts +89 -0
- package/dist/src/is-in-hotbar.d.ts.map +1 -0
- package/dist/src/remove-from-hotbar.d.ts +47 -0
- package/dist/src/remove-from-hotbar.d.ts.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@k8slens/hotbar-contracts",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"lens": {
|
|
5
|
+
"env": "renderer",
|
|
6
|
+
"layer": "business",
|
|
7
|
+
"role": "contracts",
|
|
8
|
+
"visibility": "public-for-all"
|
|
9
|
+
},
|
|
10
|
+
"private": false,
|
|
11
|
+
"description": "Contracts (tokens, types, the kind factory) for the hotbar: the extension-facing surface of @lensapp/hotbar",
|
|
12
|
+
"homepage": "https://k8slens.dev",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/lensapp/lens-desktop-monorepo.git"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": {
|
|
19
|
+
"name": "Mirantis, Inc.",
|
|
20
|
+
"email": "info@k8slens.dev"
|
|
21
|
+
},
|
|
22
|
+
"type": "commonjs",
|
|
23
|
+
"exports": {
|
|
24
|
+
"./package.json": "./package.json",
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"require": "./dist/index.js",
|
|
28
|
+
"import": "./dist/index.js",
|
|
29
|
+
"default": "./dist/index.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "lens-package-build",
|
|
37
|
+
"build:types": "lens-types-build",
|
|
38
|
+
"clean": "rimraf dist/",
|
|
39
|
+
"lint": "lens-verify-code-style",
|
|
40
|
+
"test:unit": "jest",
|
|
41
|
+
"check-types:tests": "lens-types-build --checkTypesTests"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@k8slens/drop-down-menu-contracts": "^1.0.0",
|
|
45
|
+
"@k8slens/injectable": "^26.2.0",
|
|
46
|
+
"@k8slens/injectable-react": "^26.0.7",
|
|
47
|
+
"@k8slens/public-utilities": "^1.0.0",
|
|
48
|
+
"mobx": "^6.15.0",
|
|
49
|
+
"mobx-react": "^9.2.1",
|
|
50
|
+
"react": "^19.2.0"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@lensapp/code-style": "^1.2.0",
|
|
54
|
+
"@lensapp/jest": "^7.2.0",
|
|
55
|
+
"@k8slens/package-build": "^2.2.0",
|
|
56
|
+
"@k8slens/typescript": "^7.2.0",
|
|
57
|
+
"@types/react": "^19.2.0"
|
|
58
|
+
},
|
|
59
|
+
"publishConfig": {
|
|
60
|
+
"access": "public",
|
|
61
|
+
"registry": "https://registry.npmjs.org/"
|
|
62
|
+
}
|
|
63
|
+
}
|