-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "venture-lens-bp-review",
"version": "0.3.0",
"private": true,
"description": "DeepSeek-powered business plan review workspace",
"license": "Apache-2.0",
"type": "module",
"main": "server.mjs",
"scripts": {
"build:public": "node scripts/build-public-assets.mjs",
"start": "node server.mjs",
"dev": "node --watch server.mjs",
"check:syntax": "node --check server.mjs && find src public tests -type f -name '*.js' -exec node --check {} +",
"lint": "node scripts/check-source-style.mjs",
"test": "node --test tests/*.test.js",
"test:e2e": "playwright test",
"check": "npm run build:public && npm run check:syntax && npm run lint && npm test",
"research:history": "node scripts/list-research-history.mjs",
"migrate:legacy-owners": "node scripts/migrate-legacy-owners.mjs",
"deploy:remote": "./scripts/deploy-remote.sh"
},
"engines": {
"node": ">=20.16.0 <21 || >=22.3.0"
},
"dependencies": {
"@tesseract.js-data/chi_sim": "1.0.0",
"@tesseract.js-data/eng": "1.0.0",
"jszip": "^3.10.1",
"markdown-it": "^14.2.0",
"pdf-parse": "^2.4.5",
"pdfkit": "^0.19.1",
"tesseract.js": "7.0.0"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"esbuild": "^0.28.2"
}
}