-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "unredact",
"version": "0.1.0",
"private": true,
"description": "A fun, fully client-side tool that finds failed PDF redactions. Your file never leaves your browser. Built by phaselaw.",
"license": "MIT",
"homepage": "https://unredact.phaselab.co",
"repository": {
"type": "git",
"url": "https://github.com/phaselabinc/unredact.git"
},
"bugs": {
"url": "https://github.com/phaselabinc/unredact/issues"
},
"engines": {
"node": "22.x || 24.x"
},
"scripts": {
"copy-pdfjs": "node scripts/copy-pdfjs.mjs",
"dev": "npm run copy-pdfjs && next dev",
"build": "npm run copy-pdfjs && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"examples": "node examples/generate.mjs",
"examples:real": "node examples/real-world/fetch.mjs",
"check-format": "prettier --check .",
"format": "prettier --write . && eslint --fix ."
},
"dependencies": {
"next": "^14.2.35",
"pdfjs-dist": "4.10.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20.17.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"daisyui": "^4.12.24",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"html-to-image": "^1.11.13",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.6.3",
"vitest": "^4.1.0"
}
}