-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.97 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
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
{
"name": "blackstone-ui",
"version": "3.0.0",
"description": "Web components, classes, and utilities for creating single-page PWAs",
"main": "index.js",
"homepage": "https://bui.js.org",
"repository": {
"type": "git",
"url": "https://github.com/kjantzer/bui"
},
"scripts": {
"start": "npm run build-icons && npm run build-sw && parcel demo/index.html --no-autoinstall --out-dir demo/dist",
"build": "npm run build-icons && npm run build-code-comment-docs && npm run build-sw && parcel build demo/index.html --no-autoinstall --out-dir public --public-url ./ --no-minify && cp ./CNAME ./public/CNAME",
"build-sw": "parcel build demo/sw/src/index.js --no-autoinstall --out-dir ./demo --out-file ./sw.js --no-minify",
"publish-pages": "npm run build && bash update-github-pages.sh",
"build-icons": "node generate-all-material-icons.js",
"build-code-comment-docs": "node demo/comment-docs"
},
"keywords": [
"custom elements",
"web components",
"ui framework",
"ui components",
"design system",
"lit-element",
"bui",
"PWA",
"progressive web app",
"node.js",
"node app"
],
"author": "Kevin Jantzer, Blackstone Publishing",
"license": "MIT",
"alias": {
"bui": "./"
},
"browserslist": [
"last 1 chrome versions"
],
"devDependencies": {
"highlight.js": "^10.0.3",
"less": "^3.11.1",
"marked": "4.0.16",
"parcel-bundler": "^1.12.5",
"parcel-plugin-markdown-string": "^1.4.2",
"parcel-plugin-svg-as-inline-string": "github:kjantzer/parcel-plugin-svg-as-inline-string",
"extract-comments": "^1.1.0"
},
"dependencies": {
"@fnando/sparkline": "^0.3.10",
"@lit-labs/virtualizer": "^2.0.11",
"@material-icons/svg": "github:material-icons/material-icons#5c27c3f",
"@tiptap/core": "2.1.8",
"@tiptap/extension-character-count": "2.1.8",
"@tiptap/extension-link": "2.1.8",
"@tiptap/extension-placeholder": "2.1.8",
"@tiptap/extension-superscript": "2.1.8",
"@tiptap/extension-text-align": "2.1.8",
"@tiptap/extension-typography": "2.1.8",
"@tiptap/pm": "2.1.8",
"@tiptap/starter-kit": "2.1.8",
"@tiptap/suggestion": "2.1.8",
"@webtoon/psd": "^0.3.0",
"backbone": "^1.5.0",
"component-emitter": "^1.3.0",
"dayjs": "^1.8.35",
"fluent-ffmpeg": "^2.1.2",
"fuse.js": "^3.4.5",
"jszip": "^3.10.1",
"lit": "^3.1.0",
"node-vibrant": "^3.2.1-alpha.1",
"numeral": "^2.0.6",
"popper.js": "^1.14.7",
"puppeteer": "13.5.1",
"socket.io": "^2.3.0",
"sortablejs": "^1.15.3",
"tinycolor2": "^1.4.2",
"url-pattern": "^1.0.3",
"workbox-recipes": "^6.1.0",
"qr-code-styling": "1.6.0-rc.1",
"xml2js": "^0.4.23"
}
}