-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 766 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
{
"name": "pdfviewer",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"build:win": "scripts\\run-node.cmd node_modules/vite/bin/vite.js build",
"dev": "vite build --watch",
"dev:win": "scripts\\run-node.cmd node_modules/vite/bin/vite.js build --watch",
"test": "vitest run",
"test:win": "scripts\\run-node.cmd node_modules/vitest/vitest.mjs run",
"typecheck": "tsc --noEmit",
"typecheck:win": "scripts\\run-node.cmd node_modules/typescript/bin/tsc --noEmit"
},
"dependencies": {
"pdfjs-dist": "4.10.38"
},
"devDependencies": {
"@types/chrome": "^0.2.2",
"@types/node": "^26.1.0",
"typescript": "^6.0.3",
"vite": "^8.1.3",
"vitest": "^4.1.10"
}
}