-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.26 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.26 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cracked-dev-cli",
"version": "1.2.19",
"description": "AI-powered CLI tool for software development",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"crkd": "./bin/run.js"
},
"files": [
"dist",
"bin"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jonit-dev/cracked-dev-cli/"
},
"keywords": [
"cli",
"ai",
"development",
"productivity",
"coding",
"assistant"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest --silent",
"typecheck": "tsc --noEmit && yarn lint --fix",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write . --loglevel silent",
"prepack": "yarn build",
"dev:cli": "node bin/run.js",
"playground": "ts-node ./src/playground.ts"
},
"oclif": {
"bin": "crkd",
"dirname": "crkd",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " "
},
"devDependencies": {
"@oclif/test": "^4.1.0",
"@swc/core": "^1.9.2",
"@types/fs-extra": "^11.0.4",
"@types/fuse": "^2.6.2",
"@types/he": "^1.2.3",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "5.5.3",
"typescript-eslint": "^7.0.1"
},
"dependencies": {
"@oclif/core": "^4.0.32",
"@oclif/plugin-help": "^6.2.16",
"@types/uuid": "^10.0.0",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"fuse.js": "^7.0.0",
"gpt-tokenizer": "^2.8.1",
"he": "^1.2.0",
"reflect-metadata": "^0.2.2",
"simple-git": "^3.27.0",
"tree-cli": "^0.6.7",
"tsup": "^8.3.5",
"tsyringe": "^4.8.0",
"uuid": "^11.0.3",
"zod": "^3.23.8"
},
"resolutions": {
"string-width": "4.2.3",
"strip-ansi": "6.0.1",
"wrap-ansi": "7.0.0"
}
}