-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.42 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.42 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
{
"name": "dsh-playwright-browser",
"version": "0.1.3",
"description": "Semantic, multi-tab Playwright browser automation for DeepSeek Harness",
"repository": {
"type": "git",
"url": "git+https://github.com/Clizo1209/dsh-playwright-browser.git"
},
"homepage": "https://github.com/Clizo1209/dsh-playwright-browser#readme",
"bugs": {
"url": "https://github.com/Clizo1209/dsh-playwright-browser/issues"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./controller": {
"types": "./lib/types/browser-controller.d.ts",
"default": "./lib/browser-controller.js"
},
"./cordis.patch.yml": "./cordis.patch.yml",
"./package.json": "./package.json"
},
"files": [
"lib",
"docs",
"examples",
"cordis.patch.yml",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md",
"README.zh-CN.md",
"SECURITY.md",
"LICENSE"
],
"keywords": [
"dsh-plugin",
"deepseek-harness",
"browser",
"playwright",
"agent",
"automation",
"semantic-locators"
],
"license": "MIT",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"check": "npm run typecheck && npm test && npm run test:docs && npm run build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:docs": "node scripts/check-doc-links.mjs",
"smoke": "node scripts/smoke.mjs",
"smoke:dsh": "node scripts/dsh-smoke.mjs",
"smoke:business": "node scripts/business-smoke.mjs",
"test:real-world": "node scripts/real-world-suite.mjs"
},
"peerDependencies": {
"@deepseek-ai/cordis": ">=4.0.1 <5"
},
"peerDependenciesMeta": {
"@deepseek-ai/cordis": {
"optional": true
}
},
"dependencies": {
"@deepseek-ai/schemastery": "^3.18.1",
"playwright": "^1.49.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-system-prompt": "^0.1.0-rc.5",
"@deepseek-ai/dsh-tools": "^0.1.0-rc.5",
"@types/node": "^22.0.0",
"typescript": "^5.9.3",
"vitest": "^4.1.8"
},
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"packageManager": "npm@11.12.1"
}