dsh-grok-subscription 0.1.3

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,118 @@
1
+ {
2
+ "name": "dsh-grok-subscription",
3
+ "version": "0.1.3",
4
+ "description": "Use a SuperGrok or X Premium Grok Build subscription in DeepSeek Harness",
5
+ "type": "module",
6
+ "main": "./lib/index.js",
7
+ "exports": {
8
+ ".": "./lib/index.js",
9
+ "./client": "./lib/client.js",
10
+ "./cordis.patch.yml": "./cordis.patch.yml",
11
+ "./package.json": "./package.json"
12
+ },
13
+ "files": [
14
+ "lib",
15
+ "cordis.patch.yml",
16
+ "README.md",
17
+ "SECURITY.md",
18
+ "LICENSE"
19
+ ],
20
+ "dsh": {
21
+ "bundle": {
22
+ "patch": "./cordis.patch.yml"
23
+ },
24
+ "client": {
25
+ "inject": [
26
+ "@deepseek-ai/dsh-client-connection",
27
+ "@deepseek-ai/dsh-client-locale",
28
+ "@deepseek-ai/dsh-client-ui-settings",
29
+ "@deepseek-ai/dsh-client-ui-slots"
30
+ ],
31
+ "platform": "web"
32
+ }
33
+ },
34
+ "scripts": {
35
+ "build": "node scripts/build.mjs",
36
+ "test": "node --test tests/*.test.mjs",
37
+ "check": "npm test && npm run build"
38
+ },
39
+ "keywords": [
40
+ "dsh-plugin",
41
+ "deepseek-harness",
42
+ "grok-build",
43
+ "supergrok",
44
+ "subscription",
45
+ "oauth"
46
+ ],
47
+ "license": "MIT",
48
+ "engines": {
49
+ "node": "^22.19.0 || >=24.0.0"
50
+ },
51
+ "peerDependencies": {
52
+ "@deepseek-ai/dsh-client-connection": "^0.1.5-rc.2",
53
+ "@deepseek-ai/dsh-client-locale": "^0.1.5-rc.2",
54
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.5-rc.2",
55
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.5-rc.2",
56
+ "@deepseek-ai/dsh-credentials": "^0.1.5-rc.2",
57
+ "@deepseek-ai/dsh-llm": "^0.1.5-rc.2",
58
+ "@deepseek-ai/dsh-llm-pi-ai": "^0.1.5-rc.2",
59
+ "@deepseek-ai/dsh-settings": "^0.1.5-rc.2",
60
+ "@deepseek-ai/dsh-web": "^0.1.5-rc.2",
61
+ "@earendil-works/pi-ai": "^0.82.1",
62
+ "react": "^18.2.0",
63
+ "react-dom": "^18.2.0"
64
+ },
65
+ "peerDependenciesMeta": {
66
+ "@deepseek-ai/dsh-client-connection": {
67
+ "optional": true
68
+ },
69
+ "@deepseek-ai/dsh-client-locale": {
70
+ "optional": true
71
+ },
72
+ "@deepseek-ai/dsh-client-ui-settings": {
73
+ "optional": true
74
+ },
75
+ "@deepseek-ai/dsh-client-ui-slots": {
76
+ "optional": true
77
+ },
78
+ "@deepseek-ai/dsh-credentials": {
79
+ "optional": true
80
+ },
81
+ "@deepseek-ai/dsh-llm": {
82
+ "optional": true
83
+ },
84
+ "@deepseek-ai/dsh-llm-pi-ai": {
85
+ "optional": true
86
+ },
87
+ "@deepseek-ai/dsh-settings": {
88
+ "optional": true
89
+ },
90
+ "@deepseek-ai/dsh-web": {
91
+ "optional": true
92
+ },
93
+ "@earendil-works/pi-ai": {
94
+ "optional": true
95
+ },
96
+ "react": {
97
+ "optional": true
98
+ },
99
+ "react-dom": {
100
+ "optional": true
101
+ }
102
+ },
103
+ "devDependencies": {
104
+ "esbuild": "^0.25.0"
105
+ },
106
+ "author": "BaronCyrus",
107
+ "repository": {
108
+ "type": "git",
109
+ "url": "git+https://github.com/BaronCyrus/dsh-grok-subscription.git"
110
+ },
111
+ "bugs": {
112
+ "url": "https://github.com/BaronCyrus/dsh-grok-subscription/issues"
113
+ },
114
+ "homepage": "https://github.com/BaronCyrus/dsh-grok-subscription#readme",
115
+ "publishConfig": {
116
+ "access": "public"
117
+ }
118
+ }