-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "@bundled-es-modules/pdfjs-dist",
"version": "3.6.172-alpha.1",
"description": "mirror of pdfjs-dist, bundled and exposed as ES module",
"author": "Rob Resendez ([email protected])",
"type": "module",
"module": "build/pdf.js",
"main": "build/pdf.js",
"types": "build/pdf.d.ts",
"files": [
"build/",
"web/",
"types/"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git://github.com/bundled-es-modules/pdfjs-dist.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@web/dev-server": "^0.2.1",
"pdfjs-dist": "3.6.172",
"rimraf": "^5.0.0",
"rollup": "^3.21.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-ignore": "^1.0.10",
"rollup-plugin-polyfill-node": "^0.12.0"
},
"scripts": {
"build": "npm run clean && rollup -c ./rollup.config.js",
"clean": "rimraf build web types",
"start": "wds --node-resolve --app-index demo/index.html --root-dir ./ --open"
}
}