This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.51 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
{
"scripts": {
"build": "rimraf dist && tsc && rollup -c rollup.config.js",
"dev:build": "concurrently \"tsc --watch --preserveWatchOutput\" \"rollup -c rollup.config.dev.js\"",
"start:build": "rimraf build && rimraf dist && tsc && concurrently \"npm run dev:build\" \"web-dev-server --root-dir build --app-index build/index.html --open --compatibility none\"",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"test": "tsc"
},
"devDependencies": {
"@open-wc/building-rollup": "^1.10.0",
"@open-wc/rollup-plugin-html": "^1.2.5",
"@rollup/plugin-strip": "^2.1.0",
"@web/dev-server": "^0.1.17",
"concurrently": "^5.3.0",
"deepmerge": "^4.2.2",
"rimraf": "^3.0.2",
"rollup": "^2.50.6",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-lit-css": "^3.0.1",
"tslib": "^2.2.0",
"typescript": "^4.3.2"
},
"name": "@pwabuilder/manifest-previewer",
"version": "1.0.20",
"description": "Web component that previews a PWA based on its manifest.json file",
"author": "Maria J. Solano",
"license": "MIT",
"type": "module",
"main": "dist/manifest-previewer.js",
"module": "dist/manifest-previewer.js",
"dependencies": {
"lit": "^2.0.0-rc.3"
},
"types": "dist/manifest-previewer.d.ts",
"keywords": [
"PWA",
"web component",
"manifest",
"progressive web app",
"lit"
],
"repository": {
"type": "git",
"url": "https://github.com/pwa-builder/manifest-previewer"
},
"files": [
"dist"
]
}