-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.83 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
{
"name": "dsh-units",
"version": "0.4.0",
"description": "Unit conversion toolbox for DeepSeek Harness (dsh): length, mass, temperature, area, volume (incl. cooking), speed, time, data sizes (decimal MB vs binary MiB), data transfer rates (Mbps vs MB/s), acceleration (m/s², g-force), illumination (lux, foot-candle), pressure, energy, angle, frequency, power (mechanical/metric/electric horsepower), force, torque, typography (px/pt/em/rem), fuel economy (mpg ↔ L/100km) — zero runtime dependencies",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"cordis.patch.yml",
"README.md",
"README.zh.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"lint": "oxlint src test"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"units",
"unit-conversion",
"converter",
"data-sizes",
"data-transfer-rate",
"acceleration",
"g-force",
"illumination",
"measurement",
"typography",
"css-units",
"fuel-economy",
"power",
"horsepower",
"force",
"torque"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TYEclipse/dsh-units.git"
},
"bugs": {
"url": "https://github.com/TYEclipse/dsh-units/issues"
},
"homepage": "https://github.com/TYEclipse/dsh-units#readme",
"engines": {
"node": ">=20"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"devDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-agent": "0.1.0-rc.6",
"@deepseek-ai/dsh-tools": "0.1.0-rc.6",
"@deepseek-ai/schemastery": "^3.18.1",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "3.2.0",
"oxlint": "^1.6.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
}
}