-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 810 Bytes
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
{
"name": "dsh-high-contrast-theme",
"version": "0.1.0",
"description": "WCAG-compliant high contrast theme plugin for DeepSeek Harness: pure-black surfaces, terminal syntax palette, always-visible focus.",
"keywords": [
"deepseek-harness",
"dsh",
"theme",
"high-contrast",
"a11y",
"wcag",
"cordis"
],
"license": "MIT",
"type": "module",
"main": "./lib/client/index.js",
"exports": {
".": "./lib/client/index.js",
"./client": "./lib/client/index.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"typescript": "^5.5.4"
}
}