-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 890 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 890 Bytes
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
{
"name": "nightcord-nako",
"version": "1.0.0",
"description": "Nako chatbot API using Cloudflare Workers AI",
"main": "src/index.ts",
"scripts": {
"dev": "npx wrangler dev",
"deploy": "npx wrangler deploy",
"type-check": "tsc --noEmit",
"prepare-stickers": "npx tsx scripts/prepare-stickers.ts",
"upload-vectors": "npx tsx scripts/upload-vectors.ts",
"upload-to-vectorize": "npx tsx scripts/upload-to-vectorize.ts"
},
"keywords": [
"chatbot",
"cloudflare-workers",
"ai",
"vectorize",
"sticker-recommendation"
],
"author": "bili_47177171806",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/bili-47177171806/nako.git"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240129.0",
"dotenv": "^17.2.4",
"typescript": "^5.3.3",
"wrangler": "^3.78.0"
}
}