-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.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
{
"name": "openokapi",
"version": "2026.4.15",
"description": "",
"type": "module",
"main": "dist/index.js",
"bin": {
"openokapi": "dist/cli/index.cjs"
},
"scripts": {
"build": "tsc",
"build:pkg": "node ./scripts/build-cli.js",
"build:cli": "pnpm run build:pkg && pkg dist/cli/index.cjs --targets node18-win-x64,node18-win-arm64,node18-linux-x64,node18-linux-arm64,node18-macos-x64,node18-macos-arm64 --output dist/bin/openokapi",
"install:cli:unix": "bash ./scripts/install.sh",
"install:cli:win": "powershell -ExecutionPolicy Bypass -File .\\scripts\\install.ps1",
"prettier": "prettier --write ."
},
"author": "monderey",
"license": "MIT",
"packageManager": "pnpm@10.28.2",
"dependencies": {
"axios": "^1.15.0",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"fs": "0.0.1-security",
"node-cron": "^4.2.1",
"path": "^0.12.7",
"prettier": "^3.8.1",
"ws": "^8.19.0",
"zod": "^4.3.6"
},
"pnpm": {
"overrides": {
"axios": "^1.15.0",
"follow-redirects": "^1.16.0",
"path-to-regexp": "^8.4.0",
"qs": "^6.14.2"
}
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.1.0",
"@types/ws": "^8.18.1",
"esbuild": "^0.27.2",
"ollama": "^0.6.3",
"pkg": "^5.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"pkg": {
"assets": [
"dist/**/*"
]
},
"engines": {
"node": ">=22.22.0"
}
}