-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.93 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
{
"name": "lazyshell",
"version": "1.0.12-16",
"description": "AI CLI that generates shell commands",
"type": "module",
"bin": {
"lazyshell": "./dist/index.mjs",
"lsh": "./dist/index.mjs"
},
"files": [
"dist"
],
"scripts": {
"x": "bun src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "prettier --check . && eslint",
"lint:fix": "prettier --write . && eslint --fix",
"build": "bun build --minify --target 'node' --format 'esm' src/index.ts --outdir dist",
"release:patch": "bun run build && npm version patch && npm run build && npm publish && git push --follow-tags",
"prerelease": "bun run build && npm version prerelease && npm run build && npm publish && git push --follow-tags",
"eval:ci": "bun src/lib/ci-eval.ts",
"prepare": "husky",
"compile": "bun build --compile --minify --sourcemap src/index.ts --outfile bin/lsh"
},
"keywords": [
"ai",
"cli",
"shell",
"command",
"generator",
"shell-command",
"shell-generator",
"lazyshell"
],
"author": "bernoussama",
"license": "MIT",
"packageManager": "bun@1.2.17",
"devDependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.19",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/openai-compatible": "^0.2.14",
"@eslint/js": "^9.30.0",
"@jest/types": "^29.6.3",
"@types/node": "^22.15.34",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.0",
"husky": "^9.1.7",
"ollama-ai-provider": "^1.2.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@types/json-schema": "^7.0.15",
"ai": "^4.3.16",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"dedent": "^1.6.0",
"systeminformation": "^5.27.7",
"zod": "^3.25.67"
},
"optionalDependencies": {
"@napi-rs/clipboard": "^1.1.2"
}
}