progressive-chatgpt-bot
Version:
A progressive ChatGPT feishu bot, made to assist my girlfriend's work.
74 lines (73 loc) • 1.87 kB
JSON
{
"name": "progressive-chatgpt-bot",
"description": "A progressive ChatGPT feishu bot, made to assist my girlfriend's work.",
"version": "0.3.26",
"main": "dist/index.cjs",
"typings": "lib/index.d.ts",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"keywords": [
"workflow",
"speedy",
"speedy-js",
"publish",
"release",
"npm publish"
],
"scripts": {
"bootstrap": "pnpm i --prefer-offline",
"clean": "rm -rf cjs dist",
"dev": "run-p dev:cjs dev:bundle",
"build": "run-s build:cjs build:bundle",
"dev:cjs": "npm run build:cjs -- --watch",
"build:cjs": "tsc -p tsconfig.json --module esnext --outDir esm",
"dev:bundle": "tsup -w",
"build:bundle": "tsup",
"prepublishOnly": "npm run build",
"lint": "eslint -c .eslintrc.js src --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"cov": "jest --coverage",
"release": "quick-publish"
},
"dependencies": {
"axios": "1.3.3"
},
"devDependencies": {
"@larksuiteoapi/node-sdk": "1.11.1",
"@types/jest": "28.1.7",
"@types/lodash.throttle": "4.1.7",
"@types/node": "18.7.6",
"aircode": "0.2.7",
"chatgpt": "4.4.1",
"eslint": "7",
"eslint-config-typescript-library": "0.2.4",
"jest": "28.1.3",
"jest-cli": "28.1.3",
"jest-serializer-path": "0.1.15",
"lodash.throttle": "4.1.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"quick-publish": "0.6.0",
"rollup": "3.17.0",
"throttle-debounce": "5.0.0",
"ts-jest": "28.0.8",
"tslib": "2.4.0",
"tsup": "6.6.3",
"typescript": "4.7.4"
},
"files": [
"bin",
"esm",
"!esm/*.tsbuildinfo",
"!esm/*.map",
"lib",
"!lib/*.tsbuildinfo",
"!lib/*.map",
"types",
"*.d.ts"
]
}