-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.76 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "nuxt-pdf-kit",
"version": "1.3.1",
"description": "A feature-rich PDF viewer module for Nuxt with Nuxt UI",
"repository": {
"type": "git",
"url": "git+https://github.com/narr07/nuxt-pdf-kit.git"
},
"homepage": "https://nuxtpdfkit.permadi.dev/",
"bugs": {
"url": "https://github.com/narr07/nuxt-pdf-kit/issues"
},
"keywords": [
"nuxt",
"nuxt-module",
"nuxt3",
"nuxt4",
"pdf",
"pdf-viewer",
"pdfjs",
"pdf.js",
"nuxt-ui",
"vue",
"vue3",
"typescript",
"document-viewer",
"pdf-kit",
"pdf-reader",
"mozilla-pdfjs",
"tailwind",
"tailwindcss"
],
"author": {
"name": "Narr07",
"url": "https://github.com/narr07"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/narr07"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
}
},
"main": "./dist/module.mjs",
"typesVersions": {
"*": {
".": [
"./dist/types.d.mts"
]
}
},
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node scripts/vitest.mjs run",
"test:watch": "node scripts/vitest.mjs watch",
"test:unit": "node scripts/vitest.mjs run --project unit",
"test:nuxt": "node scripts/vitest.mjs run --project nuxt",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"docs:dev": "npm run dev --prefix docs",
"docs:build": "npm run build --prefix docs"
},
"dependencies": {
"@nuxt/kit": "^4.5.1",
"@nuxt/ui": "^4.0.0",
"@vueuse/core": "^13.5.0",
"@vueuse/nuxt": "^14.4.0",
"defu": "^6.1.4",
"pdfjs-dist": "^5.4.530"
},
"peerDependencies": {
"@nuxt/ui": "^4.0.0",
"@vueuse/nuxt": "^14.4.0"
},
"peerDependenciesMeta": {
"@nuxt/ui": {
"optional": true
},
"@vueuse/nuxt": {
"optional": true
}
},
"devDependencies": {
"@nuxt/devtools": "^3.3.1",
"@nuxt/eslint-config": "^1.16.0",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.5.1",
"@nuxt/test-utils": "^4.1.0",
"@types/node": "latest",
"@types/pdfjs-dist": "^2.10.377",
"changelogen": "^0.6.2",
"eslint": "^9.39.2",
"happy-dom": "^20.11.1",
"nuxt": "^4.5.1",
"typescript": "~5.9.3",
"vitest": "^4.1.0",
"vue-tsc": "^3.2.1"
}
}