-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.7 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
{
"name": "@kubor/dsh-bloom-theme",
"version": "0.9.0",
"description": "Bloom for DSH — 玻璃+莫兰迪主题。8 套 OKLCH 配色(雾蓝/丹红/花瓣/涟漪/鼠尾草/暖石/青金/琥珀),明暗自适应;磨砂玻璃面板默认常开;微动效 + 版本/更新指示。零依赖、TypeScript、WCAG AA。",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [],
"platform": "web",
"immediately": true
}
},
"scripts": {
"build": "npm run typecheck && tsc -p tsconfig.json && node scripts/bundle.mjs",
"build:watch": "node scripts/bundle.mjs --watch",
"sync-version": "node scripts/sync-version.mjs",
"deploy": "node scripts/sync-version.mjs && npm run build && rsync -av --delete lib/ ~/.dsh/profiles/web/node_modules/@kubor/dsh-bloom-theme/lib/ && rsync -av package.json ~/.dsh/profiles/web/node_modules/@kubor/dsh-bloom-theme/",
"dev": "node scripts/sync-version.mjs && npm run build && (npm run build:watch &) && node scripts/watch-deploy.js",
"preview": "npm run deploy && open http://127.0.0.1:3080",
"package": "npm run build && npm pack",
"desktop:link": "node scripts/desktop-profile.mjs link",
"desktop:production": "node scripts/desktop-profile.mjs production",
"check": "node scripts/check.mjs && contrast-guard",
"check:contrast": "contrast-guard",
"prepublishOnly": "node scripts/sync-version.mjs && npm run build && npm run check",
"typecheck": "tsc --noEmit -p tsconfig.check.json",
"preflight": "node scripts/preflight.mjs",
"stats": "node scripts/stats-table.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webkubor/dsh-bloom-theme.git"
},
"bugs": {
"url": "https://github.com/webkubor/dsh-bloom-theme/issues"
},
"homepage": "https://github.com/webkubor/dsh-bloom-theme#readme",
"keywords": [
"dsh",
"dsh-plugin",
"dsh-theme",
"deepseek-harness",
"deepseek",
"harness",
"theme",
"skin",
"dark-theme",
"ui-theme",
"web-ui",
"bloom",
"morandi",
"oklch",
"accessibility",
"wcag",
"wallpaper",
"glassmorphism"
],
"license": "MIT",
"files": [
"cordis.patch.yml",
"lib",
"src",
"tsconfig.json",
"README.md",
"DEV_NOTES.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^26.2.0",
"contrast-guard": "^0.2.0",
"esbuild": "^0.28.2",
"typescript": "^7.0.2"
}
}