-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.94 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
{
"name": "dsh-plugin-coaligne",
"description": "CoAligne workflow skill installer for DeepSeek Harness; requires CoAligne Desktop (signed in) to provide the MCP connection the skill depends on",
"version": "0.1.2",
"type": "module",
"packageManager": "pnpm@11.7.0",
"engines": {
"node": "^22.19.0 || >=24.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dataelement/dsh-plugin-coaligne.git"
},
"homepage": "https://www.coaligne.com",
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"cordis",
"mcp",
"skill",
"collaboration",
"coaligne"
],
"scripts": {
"build": "tsc -b && tsdown",
"test": "vitest run",
"typecheck": "tsc -b --pretty false && tsc -p tsconfig.vitest.json --pretty false",
"verify:self-contained": "node scripts/verify-self-contained.mjs",
"prepare": "node scripts/prepare.mjs",
"extract:patch": "node scripts/extract-patch.mjs",
"patch:host": "bash scripts/patch.sh"
},
"main": "lib/index.js",
"types": "lib/types/index.d.ts",
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"default": "./lib/index.js"
},
"./invariant": {
"types": "./lib/types/invariant.d.ts",
"default": "./lib/invariant.js"
},
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/invariant.js",
"lib/types/**/*.d.ts",
"lib/types/**/*.d.ts.map",
"src",
"skills",
"cordis.patch.yml"
],
"license": "BSD-3-Clause",
"peerDependencies": {
"cordis": "^4.0.0-rc.7",
"schemastery": "^3.18.0"
},
"devDependencies": {
"@cordisjs/plugin-loader": "^1.0.0-rc.5",
"@types/node": "^22.20.0",
"cordis": "^4.0.0-rc.7",
"schemastery": "^3.18.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3",
"unrun": "^0.3.1",
"vitest": "^4.1.8"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
}
}