-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.79 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
{
"name": "deep-research-privacy-edition",
"version": "1.0.0",
"description": "Deep Research: Privacy Edition - A privacy-focused research tool using Venice.ai's uncensored language models",
"main": "server.js",
"type": "module",
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node server.js",
"dev": "tsc -w & node server.js",
"cli": "tsx src/run.ts",
"lint": "eslint --ext .ts ./src",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"author": "george.g.larson@gmail.com",
"license": "ISC",
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/node": "^22.13.0",
"cross-env": "^7.0.3",
"esbuild": "^0.25.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@octokit/rest": "^21.1.1",
"axios": "^1.8.1",
"bullmq": "^5.41.7",
"crypto": "^1.0.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.18.2",
"fs-extra": "^11.3.0",
"marked": "^15.0.7",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"openai": "^4.86.1",
"socket.io": "^4.8.1"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgeglarson/deep-research-privacy.git"
},
"homepage": "https://github.com/georgeglarson/deep-research-privacy#readme",
"bugs": {
"url": "https://github.com/georgeglarson/deep-research-privacy/issues"
},
"originalProject": {
"name": "deep-research",
"url": "https://github.com/dzhng/deep-research",
"author": "https://github.com/dzhng"
},
"overrides": {
"tsx": {
"esbuild": "^0.25.0"
}
}
}