-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.71 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.71 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
98
99
100
{
"name": "codetyper-cli",
"version": "0.4.7",
"description": "CodeTyper AI Agent - Standalone CLI for autonomous code generation",
"main": "dist/index.js",
"bin": {
"codetyper": "./dist/index.js"
},
"type": "module",
"scripts": {
"dev": "bun src/index.ts",
"dev:nobump": "bun scripts/build.ts && npm link",
"build": "bun scripts/build.ts",
"sync-version": "bun scripts/sync-version.ts",
"start": "bun src/index.ts",
"test": "bun test",
"lint": "bun eslint src/**/*.ts",
"format": "npx prettier --write \"src/**/*.ts\"",
"prettier": "npx prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"scripts/**/*.ts\"",
"typecheck": "bun tsc --noEmit",
"version": "bun scripts/sync-version.ts && git add src/version.json"
},
"keywords": [
"ai",
"coding",
"assistant",
"cli",
"agent",
"typescript"
],
"author": {
"name": "Carlos Gutierrez",
"email": "carlos.gutierrez@carg.dev",
"url": "https://github.com/CarGDev"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CarGDev/codetyper.cli.git"
},
"homepage": "https://github.com/CarGDev/codetyper.cli#readme",
"bugs": {
"url": "https://github.com/CarGDev/codetyper.cli/issues"
},
"files": [
"dist/**/*.js",
"dist/**/*.wasm",
"dist/**/*.scm",
"src/version.json"
],
"dependencies": {
"@opentui/core": "^0.1.74",
"@opentui/solid": "^0.1.74",
"@solid-primitives/event-bus": "^1.0.11",
"@solid-primitives/scheduled": "^1.4.3",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"cli-highlight": "^2.1.11",
"commander": "^14.0.2",
"fast-glob": "^3.3.2",
"got": "^14.0.0",
"inquirer": "^13.2.1",
"mimic-function": "^5.0.1",
"opentui-spinner": "^0.0.6",
"ora": "^9.1.0",
"solid-js": "^1.9.10",
"uuid": "^13.0.0",
"zustand": "^5.0.10",
"zod": "^4.3.5",
"zod-to-json-schema": "^3.25.1"
},
"overrides": {
"string-width": "^5.1.2",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/inquirer": "^9.0.7",
"@types/node": "^25.0.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^10.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.2",
"eslint-plugin-promise": "^7.2.1",
"globals": "^17.0.0",
"prettier": "^3.1.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"engines": {
"bun": ">=1.0.0"
}
}