-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.49 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
{
"name": "@byteink/aish",
"version": "0.3.0",
"description": "AI shell assistant that turns natural language into shell commands. Local-first (Ollama, LM Studio), with OpenAI and Anthropic support.",
"keywords": [
"ai",
"shell",
"cli",
"llm",
"ollama",
"lmstudio",
"openai",
"anthropic",
"natural-language",
"command-line",
"assistant",
"typescript"
],
"homepage": "https://github.com/byteink/aish#readme",
"bugs": "https://github.com/byteink/aish/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/byteink/aish.git"
},
"license": "Elastic-2.0",
"author": "ByteInk",
"type": "module",
"bin": {
"ai": "./dist/cli.mjs"
},
"exports": "./dist/cli.mjs",
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun run src/cli.ts",
"build": "bun run scripts/build.ts",
"build:binary": "bun run scripts/build-binary.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check src scripts",
"format": "biome format --write src scripts",
"test": "bun test",
"prepublishOnly": "bun run build && bun run typecheck && bun run lint"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.0",
"@types/react": "^19.2.15",
"citty": "^0.1.6",
"ink": "^7.0.3",
"react": "^19.2.6",
"typescript": "^5.7.0"
}
}