-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 992 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 992 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
{
"name": "arsenal-dev",
"version": "1.0.2",
"type": "module",
"main": "index.js",
"bin": {
"arsenal": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node --esm --experimental-specifier-resolution=node cli-src/index.ts",
"build": "tsc"
},
"keywords": [
"cli",
"learning",
"development",
"code-assistant",
"ai"
],
"author": "JacobA",
"license": "MIT",
"description": "CLI tool for Arsenal - Your AI-powered code learning assistant",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^13.1.0",
"inquirer": "^8.2.5",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.14.0",
"@types/node-fetch": "^2.6.12",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/jacobalbert3/arsenal-cli"
}
}