-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 688 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 688 Bytes
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
{
"name": "pdfkit",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"deploy": "npm run build && npx gh-pages -d dist",
"test": "vitest run --config vitest.config.js",
"test:watch": "vitest --config vitest.config.js",
"test:e2e": "vitest run --config vitest.e2e.config.js",
"screenshots": "node scripts/screenshots.mjs"
},
"devDependencies": {
"gh-pages": "^6.3.0",
"happy-dom": "^20.8.3",
"puppeteer": "^24.38.0",
"vite": "^5.4.0",
"vitest": "^4.0.18"
},
"dependencies": {
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.5.207"
}
}