-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.01 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.01 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@webwriter/website-builder",
"version": "1.0.0",
"description": "Build, explore and understand static websites with different layouts (Freeform, Flow, Flex, Grid).",
"keywords": [
"webwriter-widget",
"widget-conceptual",
"widget-lang-en",
"iscedf2013-06",
"isced2011-3",
"isced2011-6",
"Drag-and-Drop",
"Freeform",
"Flow",
"Flex",
"Grid",
"widget-lang-de",
"widget-lang-ar",
"widget-lang-bg",
"widget-lang-cs",
"widget-lang-da",
"widget-lang-nl",
"widget-lang-et",
"widget-lang-fi",
"widget-lang-fr",
"widget-lang-el",
"widget-lang-hu",
"widget-lang-it",
"widget-lang-lv",
"widget-lang-lt",
"widget-lang-nb",
"widget-lang-pl",
"widget-lang-pt-PT",
"widget-lang-ro",
"widget-lang-ru",
"widget-lang-sk",
"widget-lang-sl",
"widget-lang-es",
"widget-lang-sv",
"widget-lang-tr",
"widget-lang-uk",
"widget-lang-pt-BR",
"widget-lang-ko",
"widget-lang-ja",
"widget-lang-id",
"widget-lang-zh-hans",
"widget-lang-zh-hant"
],
"license": "MIT",
"author": "Moritz Langenhan <moritz.langenhan@rwth-aachen.de>",
"repository": "github:webwriter-app/website-builder",
"scripts": {
"prepublishOnly": "npx @webwriter/build",
"dev": "npx @webwriter/build dev",
"localize": "lit-localize extract && npx @webwriter/build localize && lit-localize build"
},
"dependencies": {
"@lit/localize": "^0.12.2",
"@shoelace-style/shoelace": "^2.20.1",
"@webwriter/lit": "^2",
"lit": "^3.3.2"
},
"devDependencies": {
"@lit/localize-tools": "^0.8"
},
"exports": {
"./widgets/webwriter-website-builder.*": {
"source": "./src/webwriter-website-builder.ts",
"default": "./dist/widgets/webwriter-website-builder.*"
},
"./snippets/flex-starter.html": "./snippets/flex/example-flex-starter.html",
"./snippets/flex-advanced.html": "./snippets/flex/example-flex-advanced.html",
"./snippets/grid-starter.html": "./snippets/grid/example-grid-starter.html",
"./snippets/grid-advanced.html": "./snippets/grid/example-grid-advanced.html",
"./snippets/freeform-starter.html": "./snippets/freeform/example-freeform-starter.html",
"./snippets/freeform-advanced.html": "./snippets/freeform/example-freeform-advanced.html",
"./snippets/flow-starter.html": "./snippets/flow/example-flow-starter.html",
"./snippets/flow-advanced.html": "./snippets/flow/example-flow-advanced.html",
"./icon": "./icon.svg",
"./editing-config.json": "./editing-config.json",
"./custom-elements.json": "./custom-elements.json"
},
"editingConfig": {
".": {},
"./widgets/webwriter-website-builder": {},
"./snippets/flex-starter": {},
"./snippets/flex-advanced": {},
"./snippets/grid-starter": {},
"./snippets/grid-advanced": {},
"./snippets/freeform-starter": {},
"./snippets/freeform-advanced": {},
"./snippets/flow-starter": {},
"./snippets/flow-advanced": {}
},
"customElements": "custom-elements.json"
}