-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "pspdfkit-web-example-webpack",
"description": "Standalone and offline PDF viewer web application built with PSPDFKit for Web and Webpack",
"version": "1.0.0",
"main": "index.js",
"keywords": [
"wasm",
"web",
"assembly",
"pdf",
"pdf",
"viewer",
"webpack",
"asm.js",
"offline",
"indexeddb"
],
"author": "PSPDFKit (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/sdk/web",
"license": "SEE LICENSE IN https://www.nutrient.io/legal/Nutrient_SDK_User_Evaluation_Subscription_Agreement",
"readme": "https://www.nutrient.io/guides/web",
"dependencies": {
"@nutrient-sdk/viewer": "1.1.0",
"drag-drop": "^7.2.0",
"serve": "^14.2.4"
},
"devDependencies": {
"ajv": "^8.17.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"html-webpack-plugin": "^5.6.3",
"prettier": "^3.3.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config config/webpack.js",
"prestart": "node bin/verify-install.js && npm run build",
"start": "serve -l 8080 ./dist",
"prestart:dev": "node bin/verify-install.js",
"start:dev": "cross-env NODE_ENV=development webpack serve --config config/webpack.js --progress",
"lint": "eslint src config",
"format": "prettier --write \"{src,config}/{*/*.js,*.js}\""
},
"overrides": {
"path-to-regexp": "^3.3.0",
"cross-spawn": "^7.0.5"
}
}