-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.07 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
{
"name": "@0xc00010ff/j",
"version": "0.1.0",
"description": "j do what I say",
"main": "dist/index.js",
"bin": {
"j": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"keywords": [
"cli",
"nextjs",
"python",
"llm",
"developer-tools"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.4.7",
"openai": "^4.20.1",
"ora": "^5.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}