-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@appkit/llamacpp-cli",
"version": "2.2.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/",
"src/launchers/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc && npm run postbuild",
"postbuild": "cp -r src/launchers dist/ && chmod +x dist/launchers/llamacpp-server dist/launchers/llamacpp-router dist/launchers/llamacpp-admin",
"start": "node dist/cli.js",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:validation": "vitest run src/lib/validation-service.test.ts",
"test:model": "vitest run src/lib/model-management-service.test.ts",
"test:config": "vitest run src/lib/server-config-service.test.ts",
"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",
"swagger-ui-dist": "^5.31.1",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/asciichart": "^1.5.8",
"@types/blessed": "^0.1.27",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"commit-and-tag-version": "^12.6.1",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18.0.0"
}
}