25 lines
639 B
JSON
25 lines
639 B
JSON
{
|
|
"name": "aicl",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"bin": {
|
|
"aicl": "out/index.js"
|
|
},
|
|
"scripts": {
|
|
"check": "bunx --bun @biomejs/biome check --write",
|
|
"build": "bun build --target=bun --production --outfile=out/index.js ./index.ts && sed -i '1i#!\\/usr\\/bin\\/env bun' out/index.js",
|
|
"build:bin": "bun build --compile --outfile=out/aicl ./index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.12",
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/openai-compatible": "^2.0.41",
|
|
"ai": "^6.0.161"
|
|
}
|
|
}
|