-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.3 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
{
"name": "uap_analyticsbot",
"version": "1.0.0",
"description": "File analytics bot for descriptive, diagnostic, predictive, and prescriptive analysis.",
"type": "commonjs",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"gui": "node src/gui/server.js",
"diagnose": "node scripts/diagnostics.js",
"test": "node --test --experimental-test-coverage",
"verify": "node verify.js",
"docs:generate": "node scripts/generate-docs.js",
"docs:check": "node scripts/generate-docs.js --check && node scripts/validate-docs.js",
"prepare": "husky",
"release": "commit-and-tag-version",
"postrelease": "git push --follow-tags && gh release create v%npm_package_version% --notes-file CHANGELOG.md --title \"Release v%npm_package_version%\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aj1126/UAP_AnalyticsBot.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/aj1126/UAP_AnalyticsBot/issues"
},
"homepage": "https://github.com/aj1126/UAP_AnalyticsBot#readme",
"dependencies": {
"chokidar": "^5.0.0",
"compromise": "^14.16.0",
"mupdf": "^1.27.0",
"pdf-parse": "^2.4.5",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"commit-and-tag-version": "^12.7.3",
"husky": "^9.1.7"
}
}