-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 1.3 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
{
"name": "@teamhive/pdf-viewer",
"version": "5.0.0",
"description": "PDF Viewer Web Component. Built with stencil and pdfjs.",
"homepage": "https://github.com/TeamHive/pdf-viewer",
"repository": {
"type": "git",
"url": "github:TeamHive/pdf-viewer"
},
"author": "TeamHive",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/pdf-viewer/pdf-viewer.esm.js",
"files": [
"dist/"
],
"scripts": {
"build": "npm run pdf.js:build && npm run prepare-assets && npm run build:stencil",
"build:stencil": "stencil build",
"start": "stencil build --dev --watch --serve",
"prepare-assets": "node ./scripts/prepare-assets.js",
"pdf.js:install": "cd pdf.js && npm install",
"pdf.js:build": "cd pdf.js && npx gulp generic",
"prepublishOnly": "npm run build"
},
"dependencies": {
"screenfull": "^5.0.2"
},
"devDependencies": {
"@stencil/core": "^4.12.0",
"@stencil/sass": "^3.0.9",
"ncp": "^2.0.0"
},
"license": "MIT"
}