forked from kryops/pdfmake-html-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.07 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
{
"name": "pdfmake-html-renderer",
"version": "0.1.4",
"author": "Michael Strobel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kryops/pdfmake-html-renderer.git"
},
"bugs": {
"url": "https://github.com/kryops/pdfmake-html-renderer/issues"
},
"homepage": "https://github.com/kryops/pdfmake-html-renderer#readme",
"keywords": [
"pdfmake",
"pdf"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"svelte": "src/PdfmakeHtmlRenderer.svelte",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf dist",
"start": "vite --config playground.vite.config.ts",
"build": "vite build && vite build --ssr && BUILD_GLOBAL=true vite build && mv dist/style.css dist/index.css && rimraf dist/server/style.css",
"docs": "vite build --config playground.vite.config.ts",
"lint:tsc": "tsc --noEmit",
"lint:svelte": "svelte-check --ignore examples",
"lint": "run-p 'lint:*'",
"prepublish": "yarn lint && yarn build && jest",
"test": "yarn build && jest"
},
"dependencies": {
"qrcode": "^1.5.1"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@tsconfig/svelte": "^3.0.0",
"@types/expect-puppeteer": "^5.0.2",
"@types/jest": "^29.2.4",
"@types/jest-environment-puppeteer": "^5.0.3",
"@types/jest-image-snapshot": "^6.1.0",
"@types/pdfmake": "^0.2.2",
"@types/qrcode": "^1.5.0",
"ace-builds": "^1.14.0",
"css-color-names": "^1.0.1",
"get-port": "^6.1.2",
"jest": "^29.3.1",
"jest-image-snapshot": "^6.1.0",
"jest-puppeteer": "^6.2.0",
"npm-run-all": "^4.1.5",
"pdfmake": "^0.2.7",
"prettier": "^2.8.1",
"puppeteer": "^19.4.1",
"rimraf": "^3.0.2",
"svelte": "^3.55.0",
"svelte-check": "^3.0.1",
"svelte-preprocess": "^5.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.3"
},
"packageManager": "[email protected]"
}