-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.19 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
{
"name": "@parallel-web/dsh-web-search-parallel",
"description": "Parallel Search provider bundle for the DeepSeek Harness web capability seam",
"version": "0.1.0",
"author": "Parallel <support@parallel.ai>",
"license": "MIT",
"type": "module",
"sideEffects": false,
"packageManager": "pnpm@11.7.0",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/index.d.ts",
"cordis.patch.yml",
"README.md",
"CONTRIBUTING.md",
"SECURITY.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"repository": "github:parallel-web/dsh-web-search-parallel",
"keywords": [
"deepseek-harness",
"dsh-plugin",
"parallel-search",
"web-search"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"scripts": {
"build": "tsdown",
"check": "pnpm run typecheck && pnpm run lint && pnpm run test && pnpm run build && pnpm run check:manifest && pnpm run check:package",
"check:manifest": "node scripts/check-manifest.mjs",
"check:package": "node scripts/check-package.mjs",
"lint": "oxlint src tests scripts tsdown.config.ts vitest.e2e.config.ts",
"prepare": "pnpm run build",
"test": "vitest run --exclude tests/live-search.e2e.ts",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/dsh-launch-environment": "0.1.0-rc.6",
"@deepseek-ai/dsh-web": "0.1.0-rc.6"
},
"dependencies": {
"@deepseek-ai/schemastery": "3.18.1",
"parallel-web": "1.3.0"
},
"devDependencies": {
"@deepseek-ai/cordis": "4.0.1",
"@deepseek-ai/cordis-plugin-include": "1.0.6",
"@deepseek-ai/dsh": "0.1.0-rc.6",
"@deepseek-ai/dsh-launch-environment": "0.1.0-rc.6",
"@deepseek-ai/dsh-web": "0.1.0-rc.6",
"@types/node": "26.2.0",
"js-yaml": "4.2.0",
"oxlint": "1.76.0",
"tsdown": "0.22.2",
"typescript": "6.0.3",
"vitest": "4.1.8"
}
}