-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.92 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
76
77
{
"name": "neoarchive",
"version": "0.1.0-beta.0",
"description": "Self-hosted AI document management for the NeoLabs Ecosystem",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/NeoLabs-Systems/NeoArchive.git"
},
"bugs": {
"url": "https://github.com/NeoLabs-Systems/NeoArchive/issues"
},
"homepage": "https://github.com/NeoLabs-Systems/NeoArchive#readme",
"bin": {
"neoarchive": "bin/neoarchive.js"
},
"main": "server/index.js",
"files": [
"bin",
"dev",
"docs",
"flutter_app",
"landing",
"lib",
"runtime",
"scripts",
"server",
"static",
"AGENTS.md",
"CLAUDE.md",
"CONTRIBUTING.md",
"GUIDELINES.md",
"LICENSE",
"README.md",
"SECURITY.md",
".env.example"
],
"scripts": {
"start": "node server/index.js",
"dev": "node --watch server/index.js",
"dev:backend": "./dev/backend.sh",
"dev:web": "./dev/flutter-web.sh",
"migrate": "node lib/schema_migrations.js",
"manage": "node bin/neoarchive.js",
"test": "npm run test:backend",
"test:backend": "node --test \"test/*.test.js\"",
"flutter:test": "cd flutter_app && flutter test",
"docs:dev": "docusaurus start",
"docs:build": "docusaurus build",
"docs:preview": "docusaurus serve --dir build"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@docusaurus/core": "^3.6.0",
"@docusaurus/preset-classic": "^3.6.0",
"bcrypt": "^5.1.1",
"better-sqlite3": "^11.10.0",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"express": "^4.21.0",
"franc-min": "^6.2.0",
"mammoth": "^1.8.0",
"multer": "^1.4.5-lts.1",
"otplib": "^12.0.1",
"pdf-parse": "^1.1.1",
"prompts": "^2.4.2",
"qrcode": "^1.5.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"tesseract.js": "^5.1.1",
"zod": "^3.23.8"
}
}