-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.51 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
{
"name": "tweakpane-compact-kit",
"version": "0.1.2",
"description": "A compact layout toolkit for Tweakpane with split-layout, grid, and auto-optimized styles",
"type": "module",
"main": "./dist/tweakpane-compact-kit.umd.js",
"module": "./dist/tweakpane-compact-kit.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/tweakpane-compact-kit.es.js",
"require": "./dist/tweakpane-compact-kit.umd.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:lib",
"build:lib": "vite build --config vite.config.lib.ts",
"dev": "node scripts/run-demo.mjs",
"dev:lib": "npm run build:lib -- --watch",
"demo": "node scripts/run-demo.mjs",
"demo:capture": "node scripts/run-demo.mjs --capture",
"demo:published": "node scripts/run-published-demo.mjs",
"prepublishOnly": "npm run build:lib",
"test": "vitest run"
},
"keywords": [
"tweakpane",
"plugin",
"compact",
"layout",
"split-layout",
"grid",
"ui",
"control-panel",
"toolkit"
],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"tweakpane": "^4.0.0"
},
"devDependencies": {
"@tweakpane/plugin-essentials": "0.2.1",
"jsdom": "^24.1.3",
"tweakpane": "^4.0.0",
"typescript": "5.6.2",
"vitest": "^2.1.1",
"vite": "5.4.3",
"vite-plugin-dts": "^4.5.4"
}
}