@sparkelf/dsh-plugin-dataops 0.1.0-rc.10 → 0.1.0-rc.9

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.
Files changed (1) hide show
  1. package/package.json +53 -53
package/package.json CHANGED
@@ -1,55 +1,45 @@
1
1
  {
2
- "dependencies": {
3
- "@deepseek-ai/schemastery": ">=3.18.1"
4
- },
2
+ "name": "@sparkelf/dsh-plugin-dataops",
5
3
  "description": "Standalone DataOps MCP integration with delegated browser authorization and Settings UI",
6
- "devDependencies": {
7
- "@deepseek-ai/cordis": "^4.0.1",
8
- "@deepseek-ai/dsh-brand": "^0.1.2-alpha.1",
9
- "@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.1",
10
- "@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.1",
11
- "@deepseek-ai/dsh-client-store": "^0.1.2-alpha.1",
12
- "@deepseek-ai/dsh-client-ui-layout": "^0.1.2-alpha.1",
13
- "@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.1",
14
- "@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.1",
15
- "@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.1",
16
- "@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.1",
17
- "@deepseek-ai/dsh-credentials": "^0.1.2-alpha.1",
18
- "@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.1",
19
- "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.1",
20
- "@deepseek-ai/dsh-timeout": "^0.1.2-alpha.1",
21
- "@deepseek-ai/dsh-tools": "^0.1.2-alpha.1",
22
- "@sparkelf/dsh-plugin-mcp-credentials": "^0.1.0-rc.10",
23
- "@types/react": "~18.3.1",
24
- "react": "^18.2.0"
4
+ "version": "0.1.0-rc.9",
5
+ "publishConfig": {
6
+ "access": "public"
25
7
  },
26
- "dsh": {
27
- "client": {
28
- "inject": [
29
- "@deepseek-ai/dsh-client-connection",
30
- "@deepseek-ai/dsh-client-locale",
31
- "@deepseek-ai/dsh-client-ui-layout",
32
- "@deepseek-ai/dsh-client-ui-settings",
33
- "@deepseek-ai/dsh-client-ui-renderer"
34
- ],
35
- "platform": "web"
36
- }
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/SparkElf/deepseek-harness-plus.git",
11
+ "directory": "packages/plus/dataops"
37
12
  },
13
+ "type": "module",
14
+ "main": "lib/index.js",
15
+ "types": "lib/types/index.d.ts",
38
16
  "exports": {
39
17
  ".": {
40
- "default": "./lib/index.js",
41
- "types": "./lib/types/index.d.ts"
18
+ "types": "./lib/types/index.d.ts",
19
+ "default": "./lib/index.js"
42
20
  },
43
21
  "./client": {
44
- "default": "./lib/client.js",
45
- "types": "./lib/types/client/index.d.ts"
22
+ "types": "./lib/types/client/index.d.ts",
23
+ "default": "./lib/client.js"
46
24
  },
47
25
  "./invariant": {
48
- "default": "./lib/invariant.js",
49
- "types": "./lib/types/invariant.d.ts"
26
+ "types": "./lib/types/invariant.d.ts",
27
+ "default": "./lib/invariant.js"
50
28
  },
51
29
  "./package.json": "./package.json"
52
30
  },
31
+ "dsh": {
32
+ "client": {
33
+ "platform": "web",
34
+ "inject": [
35
+ "@deepseek-ai/dsh-client-connection",
36
+ "@deepseek-ai/dsh-client-locale",
37
+ "@deepseek-ai/dsh-client-ui-layout",
38
+ "@deepseek-ai/dsh-client-ui-settings",
39
+ "@deepseek-ai/dsh-client-ui-renderer"
40
+ ]
41
+ }
42
+ },
53
43
  "files": [
54
44
  "lib/index.js",
55
45
  "lib/invariant.js",
@@ -57,8 +47,6 @@
57
47
  "lib/types/**/*.d.ts"
58
48
  ],
59
49
  "license": "MIT",
60
- "main": "lib/index.js",
61
- "name": "@sparkelf/dsh-plugin-dataops",
62
50
  "peerDependencies": {
63
51
  "@deepseek-ai/cordis": ">=4.0.1",
64
52
  "@deepseek-ai/dsh-brand": ">=0.1.2-alpha.1",
@@ -72,21 +60,33 @@
72
60
  "@deepseek-ai/dsh-invariants": ">=0.1.2-alpha.1",
73
61
  "@deepseek-ai/dsh-timeout": ">=0.1.2-alpha.1",
74
62
  "@deepseek-ai/dsh-tools": ">=0.1.2-alpha.1",
75
- "@sparkelf/dsh-plugin-mcp-credentials": ">=0.1.0-rc.10"
63
+ "@sparkelf/dsh-plugin-mcp-credentials": ">=0.1.0-rc.9"
76
64
  },
77
- "publishConfig": {
78
- "access": "public"
65
+ "dependencies": {
66
+ "@deepseek-ai/schemastery": ">=3.18.1"
79
67
  },
80
- "repository": {
81
- "directory": "packages/plus/dataops",
82
- "type": "git",
83
- "url": "git+https://github.com/SparkElf/deepseek-harness-plus.git"
68
+ "devDependencies": {
69
+ "@types/react": "~18.3.1",
70
+ "react": "^18.2.0",
71
+ "@deepseek-ai/cordis": "^4.0.1",
72
+ "@deepseek-ai/dsh-brand": "^0.1.2-alpha.1",
73
+ "@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.1",
74
+ "@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.1",
75
+ "@deepseek-ai/dsh-client-store": "^0.1.2-alpha.1",
76
+ "@deepseek-ai/dsh-client-ui-layout": "^0.1.2-alpha.1",
77
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.1",
78
+ "@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.1",
79
+ "@deepseek-ai/dsh-client-ui-settings": "^0.1.2-alpha.1",
80
+ "@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.1",
81
+ "@deepseek-ai/dsh-credentials": "^0.1.2-alpha.1",
82
+ "@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.1",
83
+ "@deepseek-ai/dsh-invariants": "^0.1.2-alpha.1",
84
+ "@deepseek-ai/dsh-timeout": "^0.1.2-alpha.1",
85
+ "@deepseek-ai/dsh-tools": "^0.1.2-alpha.1",
86
+ "@sparkelf/dsh-plugin-mcp-credentials": "^0.1.0-rc.9"
84
87
  },
85
88
  "scripts": {
86
89
  "bundle": "tsdown",
87
90
  "watch": "tsdown --watch"
88
- },
89
- "type": "module",
90
- "types": "lib/types/index.d.ts",
91
- "version": "0.1.0-rc.10"
92
- }
91
+ }
92
+ }