dsh-plugin-admin 0.1.0

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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "dsh-plugin-admin",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "dsh web UI plugin: unified administration panel — plugin and session management with modern tabbed Web UI (host remote + browser panel)",
6
+ "main": "lib/index.js",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/zerosloney/dsh-plugin-admin.git"
11
+ },
12
+ "keywords": [
13
+ "dsh",
14
+ "dsh-plugin",
15
+ "admin",
16
+ "cordis"
17
+ ],
18
+ "scripts": {
19
+ "test": "node scripts/self-check.mjs && node scripts/host-check.mjs"
20
+ },
21
+ "exports": {
22
+ ".": "./lib/index.js",
23
+ "./client": "./lib/client.js",
24
+ "./package.json": "./package.json"
25
+ },
26
+ "files": [
27
+ "lib",
28
+ "cordis.patch.yml",
29
+ "README.md"
30
+ ],
31
+ "dsh": {
32
+ "bundle": {
33
+ "patch": "./cordis.patch.yml"
34
+ },
35
+ "client": {
36
+ "platform": "web"
37
+ }
38
+ },
39
+ "publishConfig": {
40
+ "access": "public",
41
+ "provenance": true
42
+ },
43
+ "devDependencies": {
44
+ "jsdom": "^29.1.1",
45
+ "react": "^18.3.1",
46
+ "react-dom": "^18.3.1"
47
+ },
48
+ "engines": {
49
+ "node": ">=20.19.0"
50
+ }
51
+ }