-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 4.23 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "dsh-auth-tunnel",
"description": "Password-gated public access for the Web GUI via Cloudflare Tunnel: a loopback password gate (login page + HMAC cookie) in front of the webserver, published by spawning cloudflared in quick or named-tunnel mode - tells the shell and the model the public URL",
"version": "0.1.1-rc.2.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ai-eks/dsh-auth-tunnel.git"
},
"homepage": "https://github.com/ai-eks/dsh-auth-tunnel#readme",
"bugs": "https://github.com/ai-eks/dsh-auth-tunnel/issues",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"types": "./lib/client/index.d.ts",
"default": "./lib/client.js"
},
"./invariant": {
"types": "./lib/invariant.d.ts",
"default": "./lib/invariant.js"
},
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"README.md",
"README.zh.md",
"cordis.patch.yml",
"lib/index.d.ts",
"lib/index.js",
"lib/client.js",
"lib/client.js.map",
"lib/client/index.d.ts",
"lib/client/index.d.ts.map",
"lib/invariant.d.ts",
"lib/invariant.js",
"src"
],
"license": "MIT",
"engines": {
"node": "^22.19 || >=24"
},
"scripts": {
"build": "tsc -p tsconfig.json && tsdown",
"bundle": "tsdown",
"prepare": "pnpm run build",
"release:npm": "npm publish --tag next --access public",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-api-remotes": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-connection": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-locale": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-runtime": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-directory-picker-browse": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.1-rc.2",
"@deepseek-ai/dsh-credentials": "^0.1.1-rc.2",
"@deepseek-ai/dsh-host-directory-picker-browse": "^0.1.1-rc.2",
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
"@deepseek-ai/dsh-settings": "^0.1.1-rc.2",
"@deepseek-ai/dsh-shell-env": "^0.1.1-rc.2",
"@deepseek-ai/dsh-system-prompt": "^0.1.1-rc.2",
"@deepseek-ai/schemastery": "^3.18.1",
"react": "^18.2.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/cordis-plugin-include": "^1.0.6",
"@deepseek-ai/cordis-plugin-loader": "^1.0.2",
"@deepseek-ai/dsh-credentials": "^0.1.1-rc.2",
"@deepseek-ai/dsh-api-remotes": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-connection": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-locale": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-runtime": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-directory-picker-browse": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-settings": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-settings-plugins": "^0.1.1-rc.2",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.1-rc.2",
"@deepseek-ai/dsh-host-directory-picker-browse": "^0.1.1-rc.2",
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
"@deepseek-ai/dsh-shell-env": "^0.1.1-rc.2",
"@deepseek-ai/dsh-system-prompt": "^0.1.1-rc.2",
"@deepseek-ai/dsh-settings": "^0.1.1-rc.2",
"@deepseek-ai/schemastery": "^3.18.1",
"@types/node": "^24",
"@types/react": "~18.3.1",
"react": "^18.2.0",
"tsdown": "^0.22.2",
"typescript": "^5.9",
"vitest": "^4"
},
"dsh": {
"client": {
"platform": "web",
"immediately": true,
"inject": [
"@deepseek-ai/dsh-api-remotes",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-ui-settings",
"@deepseek-ai/dsh-client-ui-settings-plugins"
]
},
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}