-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.93 KB
/
package.json
File metadata and controls
54 lines (54 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
{
"name": "@mintplex-labs/anything-llm-cli",
"version": "0.0.13",
"description": "A CLI tool to interact with AnythingLLM from the terminal",
"type": "module",
"bin": {
"any": "dist/index.js"
},
"files": [
"dist/index.js",
"README.md"
],
"keywords": [
"anythingllm",
"llm",
"cli",
"ai"
],
"repository": {
"type": "git",
"url": "https://github.com/Mintplex-Labs/anything-llm-cli"
},
"license": "MIT",
"scripts": {
"setup": "cp .env.example .env.local && bun install",
"start": "bun run src/index.ts",
"build": "bun build --compile --minify --outfile=dist/any src/index.ts",
"build:npm": "bun build --minify --target=node --banner '#!/usr/bin/env node' --outfile=dist/index.js src/index.ts",
"prepublishOnly": "bun run build:npm",
"lint": "bunx biome check --write .",
"build:linux-x64": "bun build --compile --minify --target=bun-linux-x64 --outfile=dist/any-linux-x64 src/index.ts",
"build:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 --outfile=dist/any-linux-arm64 src/index.ts",
"build:windows-x64": "bun build --compile --minify --target=bun-windows-x64 --outfile=dist/any-windows-x64.exe src/index.ts",
"build:darwin-x64": "bun build --compile --minify --target=bun-darwin-x64 --outfile=dist/any-darwin-x64 src/index.ts",
"build:darwin-arm64": "bun build --compile --minify --target=bun-darwin-arm64 --outfile=dist/any-darwin-arm64 src/index.ts",
"build:all": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:windows-x64 && bun run build:darwin-x64 && bun run build:darwin-arm64",
"patch": "bun pm version patch",
"minor": "bun pm version minor",
"major": "bun pm version major",
"pushTags": "git push && git push --tags"
},
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@types/bun": "latest",
"lefthook": "^2.1.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"commander": "^14.0.3"
}
}