@anweat/dsh-browser 0.1.5 → 0.1.6

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 CHANGED
@@ -1,75 +1,78 @@
1
- {
2
- "name": "@anweat/dsh-browser",
3
- "version": "0.1.5",
4
- "description": "Self-contained browser runtime plugin for DeepSeek Harness (scoped @anweat) — bundles Playwright (chromium) and OpenCLI as plugin-local dependencies (with global-reuse fallback), exposes a `browser` service and interactive browser tools.",
5
- "license": "MIT",
6
- "type": "module",
7
- "main": "lib/index.js",
8
- "types": "lib/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./lib/index.d.ts",
12
- "default": "./lib/index.js"
13
- },
14
- "./cordis.patch.yml": "./cordis.patch.yml",
15
- "./package.json": "./package.json"
16
- },
17
- "files": [
18
- "lib",
19
- "cordis.patch.yml",
20
- "README.md",
21
- "scripts",
22
- "LICENSE"
23
- ],
24
- "engines": {
25
- "node": "^22.19 || >=24"
26
- },
27
- "peerDependencies": {
28
- "@deepseek-ai/cordis": "^4.0.1",
29
- "@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
30
- "@deepseek-ai/schemastery": "^3.18.1"
31
- },
32
- "peerDependenciesMeta": {
33
- "@deepseek-ai/cordis": {
34
- "optional": true
35
- },
36
- "@deepseek-ai/dsh-tools": {
37
- "optional": true
38
- },
39
- "@deepseek-ai/schemastery": {
40
- "optional": true
41
- }
42
- },
43
- "dependencies": {
44
- "@jackwener/opencli": "^1.8.6",
45
- "playwright": "^1.60.0"
46
- },
47
- "devDependencies": {
48
- "@deepseek-ai/cordis": "^4.0.1",
49
- "@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
50
- "@deepseek-ai/schemastery": "^3.18.1",
51
- "typescript": "^5.6.0",
52
- "@types/node": "^22.0.0"
53
- },
54
- "dsh": {
55
- "bundle": {
56
- "patch": "./cordis.patch.yml"
57
- }
58
- },
59
- "repository": {
60
- "type": "git",
61
- "url": "git+https://github.com/anweat/dsh-browser.git"
62
- },
63
- "keywords": [
64
- "dsh",
65
- "deepseek-harness",
66
- "plugin",
67
- "browser",
68
- "playwright",
69
- "opencli"
70
- ],
71
- "scripts": {
72
- "build": "tsc -p tsconfig.json",
73
- "test": "node --test --experimental-transform-types test/*.test.ts"
74
- }
75
- }
1
+ {
2
+ "name": "@anweat/dsh-browser",
3
+ "version": "0.1.6",
4
+ "description": "Self-contained browser runtime plugin for DeepSeek Harness (scoped @anweat) — bundles Playwright (chromium) and OpenCLI as plugin-local dependencies (with global-reuse fallback), exposes a `browser` service and interactive browser tools.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "lib/index.js",
8
+ "types": "lib/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./lib/index.d.ts",
12
+ "default": "./lib/index.js"
13
+ },
14
+ "./cordis.patch.yml": "./cordis.patch.yml",
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "lib",
19
+ "cordis.patch.yml",
20
+ "README.md",
21
+ "scripts",
22
+ "LICENSE"
23
+ ],
24
+ "engines": {
25
+ "node": "^22.19 || >=24"
26
+ },
27
+ "scripts": {
28
+ "build": "tsc -p tsconfig.json",
29
+ "test": "node --test --experimental-transform-types test/*.test.ts",
30
+ "prepublishOnly": "npm run build",
31
+ "prepare": "npm run build"
32
+ },
33
+ "peerDependencies": {
34
+ "@deepseek-ai/cordis": "^4.0.1",
35
+ "@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
36
+ "@deepseek-ai/schemastery": "^3.18.1"
37
+ },
38
+ "peerDependenciesMeta": {
39
+ "@deepseek-ai/cordis": {
40
+ "optional": true
41
+ },
42
+ "@deepseek-ai/dsh-tools": {
43
+ "optional": true
44
+ },
45
+ "@deepseek-ai/schemastery": {
46
+ "optional": true
47
+ }
48
+ },
49
+ "dependencies": {
50
+ "@jackwener/opencli": "^1.8.6",
51
+ "playwright": "^1.60.0"
52
+ },
53
+ "devDependencies": {
54
+ "@deepseek-ai/cordis": "^4.0.1",
55
+ "@deepseek-ai/dsh-tools": "^0.1.1-rc.2",
56
+ "@deepseek-ai/schemastery": "^3.18.1",
57
+ "typescript": "^5.6.0",
58
+ "@types/node": "^22.0.0"
59
+ },
60
+ "dsh": {
61
+ "bundle": {
62
+ "patch": "./cordis.patch.yml"
63
+ }
64
+ },
65
+ "packageManager": "pnpm@11.7.0",
66
+ "repository": {
67
+ "type": "git",
68
+ "url": "git+https://github.com/anweat/dsh-browser.git"
69
+ },
70
+ "keywords": [
71
+ "dsh",
72
+ "deepseek-harness",
73
+ "plugin",
74
+ "browser",
75
+ "playwright",
76
+ "opencli"
77
+ ]
78
+ }