-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.83 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.83 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
{
"name": "struktolab",
"version": "0.4.2",
"description": "A web-based structogram (Nassi-Shneiderman diagram) editor and renderer with code generation",
"type": "module",
"main": "dist/editor/struktolab-editor.umd.js",
"module": "dist/editor/struktolab-editor.es.js",
"exports": {
".": {
"import": "./dist/editor/struktolab-editor.es.js",
"require": "./dist/editor/struktolab-editor.umd.js"
},
"./renderer": {
"import": "./dist/renderer/struktolab-renderer.es.js",
"require": "./dist/renderer/struktolab-renderer.umd.js"
},
"./editor": {
"import": "./dist/editor/struktolab-editor.es.js",
"require": "./dist/editor/struktolab-editor.umd.js"
}
},
"files": [
"dist",
"README.md",
"license.md"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:renderer": "BUILD_TARGET=renderer vite build",
"build:editor": "BUILD_TARGET=editor vite build",
"build:lib": "BUILD_TARGET=renderer vite build && BUILD_TARGET=editor vite build",
"build:all": "vite build && BUILD_TARGET=renderer vite build && BUILD_TARGET=editor vite build",
"preview": "vite preview",
"changeset": "changeset",
"release": "pnpm build:lib && changeset publish",
"version-packages": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpatch/struktolab.git"
},
"homepage": "https://struktolab.openpatch.org",
"bugs": {
"url": "https://github.com/openpatch/struktolab/issues"
},
"keywords": [
"structogram",
"nassi-shneiderman",
"diagram",
"editor",
"web-component"
],
"author": "OpenPatch",
"contributors": [
"Mike Barkmin"
],
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"vite": "^7.3.1"
},
"dependencies": {
"pako": "^2.1.0"
}
}