-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 935 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 935 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
{
"type": "module",
"name": "askhal",
"version": "2.7.1",
"main": "",
"scripts": {
"test": "mocha tests",
"start": "node askhal.js",
"package": "bun build askhal.js --compile --minify --outfile ./bin/askhal",
"release": "npm run clean && npm run package",
"clean": "rm -rf ./bin"
},
"keywords": [],
"author": "Ed Addario",
"license": "MIT",
"description": "Ask HAL: A power-user tool to interact with AI models!",
"dependencies": {
"@types/html-to-text": "^9.0.4",
"axios": "^1.16.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"html-to-text": "^10.0.0",
"officeparser": "^7.0.3",
"openai": "^6.38.0",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"bun": "^1.3.14",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"mocha": "^11.7.5"
}
}