-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "svelte-pdf",
"version": "1.0.23",
"description": "svelte-pdf provides a component for rendering PDF documents using PDF.js",
"keywords": [
"pdf",
"svelte-pdf",
"pdfjs",
"pdf-print",
"pdf-zoom",
"pdf-rotation",
"pdf-navigation"
],
"homepage": "https://github.com/vinodnimbalkar/svelte-pdf#readme",
"bugs": {
"url": "https://github.com/vinodnimbalkar/svelte-pdf/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinodnimbalkar/svelte-pdf.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"main": "index.js",
"scripts": {
"build": "vite build",
"check": "svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-check --tsconfig ./jsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --write --plugin-search-dir=. .",
"lint": "prettier --check --plugin-search-dir=. . && eslint .",
"package": "svelte-package",
"preview": "vite preview"
},
"peerDependencies": {
"svelte": "^4.2.12"
},
"dependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"pdfjs-dist": "^4.0.379"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.1.1",
"@sveltejs/kit": "^2.5.2",
"@sveltejs/package": "^2.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.35.1",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.2.2",
"svelte": "^4.2.12",
"svelte-check": "^3.6.5",
"svelte2tsx": "^0.7.2",
"typescript": "^5.3.3",
"vite": "^5.0.3"
}
}