-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.53 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.53 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
{
"name": "ollama_boolean",
"version": "1.0.0",
"description": "A console application that uses Ollama to classify text prompts into binary or ternary responses",
"main": "index.ts",
"module": "index.ts",
"type": "module",
"private": false,
"keywords": ["ollama", "classification", "cli", "ai", "nlp", "text-classification"],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/ollama_boolean.git"
},
"scripts": {
"start": "bun run index.ts",
"classify": "bun run index.ts",
"build": "bun build --compile --outfile ollama_boolean index.ts",
"build:win": "bun build --compile --target=bun-windows-x64 --outfile ollama_boolean.exe index.ts",
"build:linux": "bun build --compile --target=bun-linux-x64 --outfile ollama_boolean index.ts",
"build:mac": "bun build --compile --target=bun-darwin-x64 --outfile ollama_boolean index.ts",
"build:mac-arm": "bun build --compile --target=bun-darwin-arm64 --outfile ollama_boolean-arm64 index.ts",
"build:all": "npm run build:win && npm run build:linux && npm run build:mac && npm run build:mac-arm",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"release:prepare": "bun run test && bun run build:all",
"clean": "rm -f ollama_boolean ollama_boolean.exe ollama_boolean-arm64"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"ollama": "^0.5.16"
}
}