forked from TBXark/ChatGPT-Telegram-Workers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 886 Bytes
/
package.json
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
{
"name": "chatgpt-telegram-workers",
"version": "1.3.0",
"description": "最简单快捷部署属于自己的ChatGPT Telegram机器人的方法,单文件,直接复制粘贴一把梭,无需任何依赖,无需配置本地开发环境,不用域名,免服务器。",
"main": "main.js",
"type": "module",
"scripts": {
"lint": "make lint",
"build": "make build",
"debug": "wrangler dev --local",
"wrangler": "wrangler2",
"deploy:dist": "wrangler2 publish",
"deploy:build": "npm run build && wrangler2 publish"
},
"devDependencies": {
"esbuild": "^0.17.11",
"eslint": ">=5.16.0",
"eslint-config-google": "^0.14.0",
"wrangler": "^2.12.0"
},
"exports": {
"import": "./main.js"
},
"files": [
"main.js",
"src/**/*",
"package.json",
"package-lock.json"
],
"author": "TBXark",
"license": "MIT"
}