-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.32 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.32 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
{
"name": "compleet",
"version": "0.0.1",
"description": "AI prompt compiler CLI with voice input (Bun)",
"homepage": "https://compleet.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/Markeljan/terminal-complete.git"
},
"bugs": {
"url": "https://github.com/Markeljan/terminal-complete/issues"
},
"type": "module",
"license": "MIT",
"keywords": [
"cli",
"terminal",
"ai",
"bun",
"codex"
],
"engines": {
"node": ">=18",
"bun": ">=1.3.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"src/",
"voice/",
"README.md",
"LICENSE"
],
"bin": {
"tc": "bin/tc.cjs",
"compleet": "bin/tc.cjs"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run build.ts",
"export": "bun run build.ts --export",
"smoke": "bun run src/cli.ts --help",
"smoke:dist": "bun run build && ./dist/tc --help",
"check": "ultracite check",
"typecheck": "bun tsc",
"fix": "ultracite fix",
"test": "bun test",
"ci": "bun run check && bun tsc && bun test",
"prepublishOnly": "bun run ci",
"prepare": "bun lefthook install"
},
"devDependencies": {
"@biomejs/biome": "2.4.0",
"@types/bun": "^1.3.10",
"lefthook": "^2.1.2",
"typescript": "^5",
"ultracite": "7.2.4"
}
}