33 lines
914 B
JSON
33 lines
914 B
JSON
{
|
|
"name": "aicl",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"bin": {
|
|
"aicl": "out/index.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun run index.ts",
|
|
"prod": "bun run out/index.js",
|
|
"check": "bunx --bun @biomejs/biome check --write",
|
|
"build:js": "bun run check && bun run build:bundle && bun run shebang",
|
|
"build:bundle": "bun build --target=bun --production --sourcemap --outdir=out index.ts",
|
|
"build:bin": "bun build --compile --outfile=out/aicl index.ts",
|
|
"shebang": "sed -i '1i#!\\/usr\\/bin\\/env bun' out/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.12",
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/openai-compatible": "^2.0.41",
|
|
"ai": "^6.0.161",
|
|
"ansi-styles": "^6.2.3",
|
|
"chalk": "^5.6.2",
|
|
"cli-highlight": "^2.1.11",
|
|
"cli-table3": "^0.6.5"
|
|
}
|
|
}
|