Add package manifest and lockfile

This commit is contained in:
2026-03-21 13:41:25 +08:00
parent eeacb22868
commit 4783cc95c8
2 changed files with 69 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "nano-banano",
"private": true,
"type": "module",
"module": "src/index.ts",
"scripts": {
"check": "biome format --write .",
"start": "bun run src/index.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.37",
"ai": "^6.0.134"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"typescript": "^5.9.3"
}
}