forked from khmyznikov/pwa-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.1 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
{
"name": "@khmyznikov/pwa-install",
"version": "0.2.1",
"description": "PWA install dialog provide more convenience user experience and fix lack of native dialogs in some browsers.",
"repository": {
"type": "git",
"url": "git+https://github.com/khmyznikov/pwa-install.git"
},
"type": "module",
"types": "dist/types/index.d.ts",
"main": "dist/es/pwa-install.es.js",
"scripts": {
"build": "npm run localize && npm run localize-build && npm run build-noloc && cem analyze",
"build-noloc": "webpack --config webpack/webpack.prod.js --mode=production && webpack --config webpack/webpack.prod.module.js --mode=production && webpack --config webpack/webpack.prod.umd.js --mode=production",
"localize": "lit-localize extract",
"localize-build": "lit-localize build",
"test": "npm run build-noloc && node ./webpack/serve.js",
"dev": "webpack serve --config webpack/webpack.dev.js --mode=development"
},
"author": "khmyznikov",
"license": "Unlicense",
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.8.2",
"@lit/localize-tools": "^0.6.9",
"@types/dom-chromium-installation-events": "^101.0.0",
"@types/node": "^18.16.8",
"@types/web-app-manifest": "^1.0.3",
"autoprefixer": "^10.4.14",
"clean-webpack-plugin": "4.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.40.0",
"express": "^4.18.2",
"extract-loader": "^5.1.0",
"lit-scss-loader": "^2.0.1",
"minify-lit-html-loader": "0.0.3",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"sass": "^1.62.1",
"sass-loader": "^13.2.2",
"terser-webpack-plugin": "^5.3.8",
"ts-loader": "9.4.2",
"typescript": "^5.0.4",
"typescript-lit-html-plugin": "^0.9.0",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@lit/localize": "^0.11.4",
"lit": "^2.7.4"
},
"bugs": {
"url": "https://github.com/khmyznikov/pwa-install/issues"
},
"homepage": "https://github.com/khmyznikov/pwa-install#readme",
"keywords": [
"PWA",
"lit-element",
"lit"
]
}