-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "mantispdf",
"version": "0.1.0",
"description": "Client-side PDF tools powered by WebAssembly. Your files never leave your browser.",
"type": "module",
"license": "MIT",
"author": "Bryan",
"keywords": [
"pdf",
"split-pdf",
"wasm",
"webassembly",
"rust",
"client-side",
"privacy",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/BryanBradfo/mantispdf.git"
},
"homepage": "https://github.com/BryanBradfo/mantispdf",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"build:wasm": "bash scripts/build-wasm.sh"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@vercel/analytics": "^2.0.1",
"jszip": "^3.10.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-helmet-async": "^3.0.0",
"react-pdf": "^9.2.1",
"react-router-dom": "^7.1.1"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"vite": "^6.0.5",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0"
}
}