-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "forq-cli",
"version": "1.0.0",
"description": "Terminal-based AI Coding Agent",
"main": "dist/src/index.js",
"bin": {
"forq": "./dist/src/bin/forq.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"test": "jest",
"start": "node dist/src/bin/forq.js",
"prepare": "npm run build",
"repl": "node dist/src/bin/forq.js repl",
"global-install": "npm run build && npm i -g .",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"cli",
"ai",
"coding",
"terminal",
"assistant"
],
"preferGlobal": true,
"engines": {
"node": ">=18.0.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"cosine-similarity": "^1.0.1",
"dotenv": "^16.4.7",
"glob": "^11.0.1",
"inquirer": "^8.2.5",
"openai": "^4.86.1"
}
}