forked from michael-abdo/rapidocsai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.89 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
78
79
80
81
82
{
"name": "rapidocsai",
"version": "1.0.0",
"description": "AI-powered document management system with RESTful API and web frontend for document upload, analysis, and management",
"main": "app/main.py",
"scripts": {
"start": "./run_dev.sh",
"dev": "./run_dev_with_worker.sh",
"worker": "./run_worker.sh",
"test": "python -m pytest tests/",
"test:coverage": "python -m pytest tests/ --cov=app --cov-report=html",
"lint": "echo 'Linting not configured yet'",
"format": "echo 'Formatting not configured yet'",
"build": "echo 'Build process not configured yet'",
"deploy": "git push heroku main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michael-abdo/rapidocsai.git"
},
"keywords": [
"ai",
"document-management",
"fastapi",
"python",
"openai",
"pdf-processing",
"document-analysis",
"rest-api",
"machine-learning",
"nlp",
"document-processing",
"file-upload",
"background-jobs",
"redis",
"postgresql"
],
"author": "RapidocsAI Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/michael-abdo/rapidocsai/issues"
},
"homepage": "https://github.com/michael-abdo/rapidocsai#readme",
"engines": {
"python": ">=3.8",
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"devDependencies": {},
"dependencies": {},
"peerDependencies": {},
"directories": {
"doc": "docs",
"test": "tests"
},
"files": [
"app/",
"alembic/",
"config/",
"docs/",
"requirements.txt",
"sample.env",
"*.sh",
"Procfile",
"heroku.yml"
],
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/michael-abdo"
},
"contributors": [
{
"name": "Michael Abdo",
"email": "[email protected]",
"url": "https://github.com/michael-abdo/rapidocsai"
}
]
}