-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 931 Bytes
/
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
{
"name": "pspdfkit-svelte",
"version": "1.0.0",
"private": true,
"license": "SEE LICENSE IN https://www.nutrient.io/legal/Nutrient_SDK_User_Evaluation_Subscription_Agreement",
"scripts": {
"verify-installation": "node scripts/verify-install.js && node scripts/copy-pspdfkit-files.js",
"dev": "npm run verify-installation && rollup -c -w --bundleConfigAsCjs",
"build": "npm run verify-installation && rollup -c --bundleConfigAsCjs",
"start": "sirv public --no-clear"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"ncp": "^2.0.0",
"rollup": "^4.27.3",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.2.2",
"svelte": "^4.2.19"
},
"dependencies": {
"@nutrient-sdk/viewer": "1.0.0",
"sirv-cli": "^2.0.2"
}
}