-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "settings-panel",
"version": "2.0.0",
"description": "Controls designed for purpose that feel right",
"type": "module",
"main": "index.js",
"module": "index.js",
"exports": {
".": "./index.js",
"./signals": "./signals.js",
"./control/*": "./control/*",
"./theme/*": "./theme/*"
},
"scripts": {
"dev": "npx serve .",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "node test/infer.js && node test/signals.js && node test/settings.js && node test/controls.js",
"test:e2e": "npx playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfcreative/settings-panel.git"
},
"keywords": [
"settings",
"panel",
"controls",
"ui",
"slider",
"checkbox",
"color-picker",
"dat-gui",
"tweakpane",
"gui",
"dat.gui"
],
"author": "Dmitry Iv <df.creative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dfcreative/settings-panel/issues"
},
"homepage": "https://github.com/dfcreative/settings-panel#readme",
"dependencies": {
"sprae": "^12.4.7",
"sube": "^2.3.0"
},
"devDependencies": {
"@playwright/test": "^1.58.1",
"happy-dom": "^20.5.0",
"tst": "^9.2.2"
}
}