-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
56 lines (56 loc) · 1.16 KB
/
package.json
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
{
"name": "paperless-ai",
"version": "1.0.0",
"description": "AI based Tag, correspondent and meta data generation",
"main": "server.js",
"scripts": {
"test": "nodemon server.js"
},
"keywords": [
"paperless-ngx",
"ai",
"paperless",
"artificial",
"intelligence"
],
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*",
"node_modules/*",
".git/*",
"*.log",
"public/*",
"views/*",
"document.json"
]
},
"author": "Clusterzx",
"license": "MIT",
"dependencies": {
"axios": "^1.7.8",
"bcryptjs": "^2.4.3",
"better-sqlite3": "^11.6.0",
"body-parser": "^1.20.3",
"cheerio": "^1.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"node-cron": "^3.0.3",
"nodemon": "^3.1.7",
"openai": "^4.73.1",
"sqlite3": "^5.1.7",
"tiktoken": "^1.0.18"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "^3.4.2"
}
}