-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.81 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": "@appkit/llamacpp-cli",
"version": "2.0.0",
"description": "CLI tool to manage local llama.cpp servers on macOS",
"main": "dist/cli.js",
"bin": {
"llamacpp": "./bin/llamacpp"
},
"files": [
"dist/",
"bin/",
"web/dist/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"verify-package": "node scripts/verify-package.js",
"prepublishOnly": "npm run build && cd web && npm install && npm run build && cd .. && npm run verify-package",
"release": "commit-and-tag-version",
"release:minor": "commit-and-tag-version --release-as minor",
"release:major": "commit-and-tag-version --release-as major",
"release:patch": "commit-and-tag-version --release-as patch",
"release:first": "commit-and-tag-version --first-release",
"postrelease": "git push --follow-tags origin main && npm publish --access public"
},
"keywords": [
"llama",
"llama.cpp",
"llm",
"cli",
"server-management",
"gguf",
"macos",
"launchctl"
],
"author": "Appkit Studio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/appkitstudio/llamacpp-cli.git"
},
"homepage": "https://github.com/appkitstudio/llamacpp-cli#readme",
"bugs": {
"url": "https://github.com/appkitstudio/llamacpp-cli/issues"
},
"dependencies": {
"asciichart": "^1.5.25",
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"commander": "^13.0.0"
},
"devDependencies": {
"@types/asciichart": "^1.5.8",
"@types/blessed": "^0.1.27",
"@types/node": "^20.12.7",
"commit-and-tag-version": "^12.6.1",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18.0.0"
}
}