-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "@syamaitech/syambot-cli",
"version": "1.2.0",
"description": "Terminal AI assistant CLI",
"homepage": "https://github.com/udenbaguse/syambot-cli#readme",
"bugs": {
"url": "https://github.com/udenbaguse/syambot-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/udenbaguse/syambot-cli.git"
},
"license": "ISC",
"author": "Muhamad Syamsudin (@udenbaguse)",
"type": "module",
"main": "src/cli.js",
"bin": {
"syambot": "bin/syambot.js"
},
"files": [
"bin",
"src",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"cli",
"terminal",
"ai",
"assistant",
"syambot",
"filesystem",
"crud"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node ./bin/syambot.js",
"bot": "node ./bin/syambot.js",
"ask": "node ./bin/syambot.js ask",
"chat": "node ./bin/syambot.js chat",
"check": "node --check src/cli.js && node --check src/config.js && node --check src/history.js && node --check src/fs-crud.js && node --check src/project-context.js && node --check src/command-runner.js && node --check src/ai-apply.js && node --check src/spinner.js && node --check src/providers/ollama.js",
"release:patch": "npm run check && npm version patch -m \"chore(release): %s\"",
"release:minor": "npm run check && npm version minor -m \"chore(release): %s\"",
"release:major": "npm run check && npm version major -m \"chore(release): %s\"",
"prepublishOnly": "npm run check"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.1"
}
}