-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
81 lines (81 loc) · 2.74 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ts-pdf",
"version": "0.12.0",
"description": "PDF.js-based PDF viewer",
"type": "module",
"module": "dist/ts-pdf.esm.js",
"types": "dist/ts-pdf.d.ts",
"scripts": {
"test": "karma start",
"copycsstotsc": "copyfiles -f ./src/*.css ./tsc/src",
"copypngtotsc": "copyfiles -f ./src/assets/icons/*.png ./tsc/src/assets/icons && copyfiles -f ./src/assets/assets.d.ts ./tsc/src",
"buildts": "tsc && npm run copypngtotsc",
"buildru": "rollup -c",
"copypdfjsworker": "copyfiles -f ./node_modules/pdfjs-dist/build/pdf.worker.min.mjs ./demo/assets/",
"copypdfjsviewerstyles": "copyfiles -f ./node_modules/pdfjs-dist/web/pdf_viewer.css ./demo/",
"build": "npm run buildts && npm run buildru && npm run copypdfjsworker",
"start": "npm run build && lite-server -c ls-config.json",
"mpublish": "npm version minor && npm publish",
"ppublish": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yermolim/ts-pdf.git"
},
"keywords": [
"web",
"typescript",
"pdf",
"pdf-viewer",
"pdfjs"
],
"author": "Volodymyr Yermolenko <[email protected]> (https://github.com/yermolim)",
"license": "AGPL",
"bugs": {
"url": "https://github.com/yermolim/ts-pdf/issues"
},
"homepage": "https://github.com/yermolim/ts-pdf#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/jasmine": "^5.1.2",
"@types/resize-observer-browser": "^0.1.10",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"copyfiles": "^2.4.1",
"eslint": "^8.53.0",
"eslint-plugin-import": "^2.29.0",
"jasmine-core": "^5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-typescript": "^5.5.4",
"lite-server": "^2.6.1",
"puppeteer": "^22.14.0",
"rollup": "^4.4.0",
"rollup-plugin-css-porter": "^1.0.2",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-license": "^3.2.0",
"rollup-plugin-node-externals": "^6.1.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"crypto-es": "^2.1.0",
"mathador": "^0.2.2",
"pako": "^2.1.0",
"pdfjs-dist": "^4.5.136",
"ts-viewers-core": "^0.0.27"
}
}