-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@2501-ai/cli",
"version": "0.1.5",
"description": "",
"main": "dist/index.js",
"bin": {
"@2501": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && tsc",
"build:link": "npm run build && npm link",
"unlink": "npm unlink -g @2501-ai/cli",
"start": "node .",
"lint": "tsc --noEmit && eslint . --ext .ts,.tsx --fix",
"prepare": "husky",
"test": "jest --silent",
"dev": "ts-node ./src/index.ts"
},
"keywords": [
"ai",
"agents",
"ai-agents",
"bots",
"devops",
"automation",
"cli",
"command-line",
"code"
],
"files": [
"dist",
"package.json",
"package-lock.json",
"README.md",
"LICENSE"
],
"author": "",
"license": "ISC",
"dependencies": {
"@clack/prompts": "^0.7.0",
"@types/node": "^16.18.105",
"axios": "^1.7.4",
"chalk": "^4.1.2",
"cheerio": "^1.0.0",
"commander": "^12.1.0",
"consola": "^3.2.3",
"execa": "^5.1.1",
"formdata-node": "^6.0.3",
"istextorbinary": "^9.5.0",
"jsonrepair": "^3.8.0",
"marked": "^12.0.2",
"marked-terminal": "^7.1.0",
"pdfkit": "^0.15.0",
"terminal-kit": "^3.1.1",
"turndown": "^7.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/marked-terminal": "^6.1.1",
"@types/pdfkit": "^0.13.4",
"@types/terminal-kit": "^2.5.6",
"@types/turndown": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"publishConfig": {
"access": "public"
}
}