forked from offlinecv/OfflineCV
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.52 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
{
"name": "@offlinecv/web",
"private": true,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"version": "0.1.0-alpha.1",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "node scripts/install-git-hooks.mjs",
"dev": "vite",
"dev:http": "OFFLINECV_DEV_HTTP=1 vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"bake-fixtures": "UPDATE_FIXTURES=1 vitest run src/lib/heuristics/corpus.test.ts",
"fidelity": "vite-node scripts/fidelity.ts --",
"fixture-derive": "vite-node scripts/fixture-derive.ts --",
"fixture-audit": "vite-node scripts/fixture-audit.ts --",
"eval:rewrite": "vite --open=/eval-rewrite.html",
"eval:jd-spike": "vite --open=/jd-spike.html",
"eval:parse": "vite --open=/parse-eval.html",
"typecheck": "tsc -b --noEmit",
"lint": "eslint .",
"check:fixtures": "node scripts/check-fixture-pii.mjs",
"check:baselines": "node scripts/check-known-failures.mjs",
"check:core": "node scripts/check-core-package.mjs",
"test:coverage": "vitest run --coverage",
"verify": "tsc -b --noEmit && eslint . && npm run check:fixtures && npm run check:baselines && npm run check:core && vitest run --coverage && vite build && (fallow audit --base origin/main --coverage coverage/coverage-final.json || echo 'fallow audit exited non-zero (report-only, ignored)')"
},
"dependencies": {
"@fontsource/poppins": "^5.2.7",
"@mlc-ai/web-llm": "0.2.84",
"@pdf-lib/fontkit": "^1.1.1",
"fast-diff": "^1.3.0",
"idb": "^8.0.3",
"jszip": "^3.10.1",
"libphonenumber-js": "^1.13.6",
"mammoth": "^1.12.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"posthog-js": "^1.205.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"turndown": "^7.2.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.1",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^5.0.0",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.29.0",
"eslint-plugin-react": "^7.37.5",
"fake-indexeddb": "^6.2.5",
"fallow": "^2.96.0",
"globals": "^16.2.0",
"jsdom": "^26.1.0",
"postcss": "^8.5.6",
"rollup": "^4.60.4",
"rollup-plugin-dts": "^6.5.1",
"tailwindcss": "^4.3.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.0",
"vite": "^7.1.2",
"vitest": "^3.2.4"
}
}