-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "pspdfkit-pwa-example",
"version": "1.0.0",
"description": "A PSPDFKit for Web Progressive Web Application example",
"keywords": [
"pwa",
"progressive web app",
"progressive web application",
"pdf",
"offline",
"indexeddb",
"service workers"
],
"author": "PSPDFKit (https://pspdfkit.com)",
"homepage": "https://pspdfkit.com/web",
"license": "SEE LICENSE IN https://pspdfkit.com/legal/License.pdf",
"readme": "https://pspdfkit.com/guides/web",
"scripts": {
"verify-installation": "node scripts/verify-install.js",
"prestart": "npm run build",
"start": "serve ./dist",
"watch": "run-p start watch:build",
"watch:build": "chokidar 'src/**/*' --command 'npm run build'",
"build": "npm run verify-installation && node scripts/build.js && workbox injectManifest"
},
"dependencies": {
"idb": "^2.1.3",
"pspdfkit": "2024.8.0",
"serve": "^14.2.3",
"workbox-sw": "^7.1.0"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"workbox-cli": "^7.1.0"
},
"overrides": {
"minimatch": "^3.0.5",
"json5": "^2.2.2",
"latest-version": "^9.0.0",
"path-to-regexp": "^3.3.0",
"rollup": "^3.29.5"
}
}