-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 879 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 879 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
36
37
38
39
{
"name": "demodeck",
"version": "0.1.1",
"description": "A polished dark control-panel template for open-source demos — segmented buttons, sliders, color fields, toggles, popovers, a live console terminal, and a copyable code box. Pure CSS + a tiny behavior layer, zero dependencies.",
"type": "module",
"main": "demodeck.js",
"style": "demodeck.css",
"scripts": {
"test": "node --test \"test/**/*.test.mjs\""
},
"exports": {
".": "./demodeck.js",
"./css": "./demodeck.css"
},
"files": [
"demodeck.css",
"demodeck.js",
"index.html",
"README.md",
"LICENSE"
],
"keywords": [
"demo",
"showcase",
"control-panel",
"dashboard",
"ui-kit",
"dark-theme",
"playground",
"css",
"open-source",
"zero-config"
],
"license": "MIT",
"sideEffects": [
"demodeck.js",
"*.css"
]
}