-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.67 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
82
83
84
85
86
{
"name": "ol-pdf-printer",
"version": "2.1.2",
"description": "Customizable PDF Printer control for Open Layers.",
"main": "dist/ol-pdf-printer.js",
"module": "lib/ol-pdf-printer.js",
"types": "lib/ol-pdf-printer.d.ts",
"style": [
"lib/style/css/ol-pdf-printer.css",
"lib/style/css/ol-pdf-printer.bootstrap5.css"
],
"type": "module",
"files": [
"lib/**/*",
"dist/**/*"
],
"scripts": {
"watch": "rollup -w --config rollup.config.dist.js --dev",
"doc": "documentation readme src/ol-pdf-printer.ts --shallow --quiet=true --access=public --access=undefined --section=API --parse-extension ts && node scripts/external-links.js README.md && prettier --write README.md",
"format": "eslint --fix src/** && prettier --write src",
"lint": "eslint src/** && prettier --check src",
"build": "npm run lint src && rollup --config rollup.config.dist.js && rollup --config rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GastonZalba/ol-pdf-printer.git"
},
"keywords": [
"ol",
"openlayers",
"pdf",
"print",
"gis",
"sig",
"wms"
],
"author": "Gastón Zalba",
"license": "MIT",
"bugs": {
"url": "https://github.com/GastonZalba/ol-pdf-printer/issues"
},
"homepage": "https://github.com/GastonZalba/ol-pdf-printer#readme",
"peerDependencies": {
"bootstrap": ">=5.3.0",
"modal-vanilla": ">=0.12.0",
"ol": ">=6.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "11.1.1",
"@types/dom-to-image": "^2.6.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"bootstrap": "^5.3.2",
"documentation": "^14.0.1",
"eslint": "^8.50.0",
"eslint-config-openlayers": "^18.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^4.2.1",
"modal-vanilla": "^0.12.0",
"ol": "^8.1.0",
"postcss-preset-env": "^9.1.4",
"prettier": "^3.0.3",
"rollup": "^3.20.3",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-svg-import": "^2.0.0",
"sass": "^1.68.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"dependencies": {
"jspdf": "^2.3.1",
"locale-enum": "^1.1.1",
"pdfjs-dist": "^3.5.141"
}
}