-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 990 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 990 Bytes
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
{
"name": "uniben-ai-proposal-review-cli",
"version": "1.0.6",
"description": "CLI tool to evaluate research proposals",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"proposal-reviewer": "./dist/index.js"
},
"files": [
"dist/"
],
"dependencies": {
"commander": "^11.0.0"
},
"scripts": {
"build": "tsc && copy evaluator.py dist\\evaluator.py",
"postinstall": "pip install python-docx pdfplumber transformers torch"
},
"keywords": [
"ai",
"proposal",
"review",
"cli",
"module",
"package"
],
"author": "Your Name basilchimaobi2@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unibeninterns/proposal-cli.git"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@types/node": "^22.15.21",
"typescript": "^5.8.3"
}
}