-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 KB
/
package.json
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
{
"name": "@reactive-graph/design",
"description": "Design System for Reactive Graph",
"version": "0.1.6",
"license": "MIT",
"author": "The reactive graph contributors",
"homepage": "https://design.reactive-graph.io/",
"keywords": [
"reactive-programming",
"graph-database"
],
"repository": {
"type": "git",
"url": "https://github.com/reactive-graph/design.git"
},
"bugs": {
"url": "https://github.com/reactive-graph/design/issues"
},
"engines": {
"node": ">=18"
},
"packageManager": "pnpm@9.12.0",
"dependencies": {
"@frctl/fractal": "^1.5.15",
"@frctl/handlebars": "^1.2.15",
"@frctl/mandelbrot": "^1.10.3",
"json5": "^2.2.3"
},
"devDependencies": {
"fractal-cli": "^0.0.2",
"postcss-cli": "^11.0.0"
},
"scripts": {
"build": "trunk build && cp webcomponents/reactive-graph-design-*_bg.wasm public/reactive-graph-design_bg.wasm && cp webcomponents/reactive-graph-design-*.js public/reactive-graph-design.js && pnpm run fractal:build",
"dev": "trunk build && cp webcomponents/reactive-graph-design-*_bg.wasm public/reactive-graph-design_bg.wasm && cp webcomponents/reactive-graph-design-*.js public/reactive-graph-design.js && pnpm run fractal:start",
"fractal:start": "trunk build && fractal start --sync",
"fractal:build": "fractal build",
"trunk:serve": "trunk serve",
"trunk:build": "trunk build"
},
"main": "fractal.config.js",
"files": [
"build/css/**",
"build/favicon/**",
"build/fonts/**",
"build/logo/**",
"build/reactive-graph-design.js",
"build/reactive-graph-design_bg.wasm",
"build/load.js"
]
}