-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "barrierless",
"version": "0.0.6",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --",
"coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collectCoverage --",
"format": "prettier --write .",
"lint": "eslint ."
},
"files": [
"src/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vinhyan/barrierless.git"
},
"keywords": [],
"author": "Vinh Nhan",
"license": "MIT",
"description": "A CLI tool that translates a text to a target language using AI.",
"dependencies": {
"@google/generative-ai": "^0.19.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"groq-sdk": "^0.7.0",
"iso-639-1": "^3.1.3",
"iso-639-3": "^3.0.1",
"p-queue": "^8.0.1",
"toml": "^3.0.0"
},
"type": "module",
"bin": {
"bl-bot": "src/index.js"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "3.3.3"
}
}