Miao-Yunzai/package.json

119 lines
3.1 KiB
JSON
Raw Permalink Normal View History

2023-03-04 14:30:13 +08:00
{
2024-06-11 22:14:33 +08:00
"name": "yunzai",
2024-06-10 19:35:37 +08:00
"version": "4.0.0-rc.0",
2023-03-04 14:30:13 +08:00
"author": "Yoimiya-Kokomi, Le-niao",
2024-06-08 20:52:49 +08:00
"description": "QQ Group Bot",
2024-06-18 09:48:08 +08:00
"main": "./app.js",
2023-03-04 14:30:13 +08:00
"type": "module",
"scripts": {
2024-06-18 09:48:08 +08:00
"app": "node app.js",
2024-06-10 00:37:59 +08:00
"login": "node index.js login",
"build": "rollup --config rollup.config.js",
"start": "pm2 startOrRestart pm2.config.cjs",
"stop": "pm2 stop pm2.config.cjs",
"delete": "pm2 delete pm2.config.cjs",
"kill": "pm2 kill",
"logs": "pm2 logs",
"monit": "pm2 monit",
"pm2": "pm2",
2024-06-17 13:19:18 +08:00
"image": "node image.js",
2024-06-10 10:27:51 +08:00
"css": "tailwindcss -i ./src/input.css -o ./public/output.css",
2024-06-18 22:52:19 +08:00
"lint": "commitlint --config .commitlint.config.cjs -e -V",
2024-06-08 21:07:07 +08:00
"format": "prettier --write .",
"prepare": "husky"
2023-03-04 14:30:13 +08:00
},
"dependencies": {
"art-template": "^4.13.2",
"chalk": "^5.3.0",
2024-03-08 09:48:18 +08:00
"chokidar": "^3.6.0",
2024-06-18 09:48:08 +08:00
"dotenv": "^16.4.5",
2024-03-08 09:48:18 +08:00
"https-proxy-agent": "7.0.4",
2024-03-29 13:02:02 +08:00
"icqq": "^0.6.10",
2024-03-08 09:48:18 +08:00
"image-size": "^1.1.1",
2024-03-29 13:02:02 +08:00
"inquirer": "^9.2.16",
2024-06-18 09:48:08 +08:00
"koa": "^2.15.3",
"koa-mount": "^4.0.0",
2024-06-18 09:48:08 +08:00
"koa-router": "^12.0.1",
"koa-static": "^5.0.0",
2023-03-04 14:30:13 +08:00
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"log4js": "^6.9.1",
2023-03-04 14:30:13 +08:00
"md5": "^2.3.0",
2024-03-08 09:48:18 +08:00
"moment": "^2.30.1",
"node-fetch": "^3.3.2",
2023-03-08 02:39:01 +08:00
"node-schedule": "^2.1.1",
2024-03-29 13:02:02 +08:00
"oicq": "^2.3.1",
2024-03-08 09:48:18 +08:00
"pm2": "^5.3.1",
"puppeteer": "^22.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2024-03-08 09:48:18 +08:00
"redis": "^4.6.13",
"sequelize": "^6.37.1",
"sqlite3": "5.1.6",
"yaml": "^2.4.1"
2023-03-04 14:30:13 +08:00
},
"devDependencies": {
2024-06-18 22:52:19 +08:00
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
2024-06-08 20:52:49 +08:00
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-multi-entry": "^6.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.3",
"@types/inquirer": "^9.0.7",
2024-06-10 14:10:09 +08:00
"@types/koa": "^2.15.0",
2024-06-16 11:29:47 +08:00
"@types/koa-mount": "^4.0.5",
2024-06-10 14:10:09 +08:00
"@types/koa-router": "^7.4.8",
"@types/koa-static": "^4.0.4",
2024-06-08 20:52:49 +08:00
"@types/lodash": "^4.14.200",
"@types/lodash-es": "^4.17.12",
2024-06-08 20:52:49 +08:00
"@types/node": "^20.8.5",
"@types/node-schedule": "^2.1.7",
"@types/react-dom": "^18.2.22",
2024-06-08 20:52:49 +08:00
"@types/redis": "^4.0.11",
"@types/ws": "^8.5.7",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
2024-06-09 23:29:37 +08:00
"husky": "^9.0.11",
2024-06-08 20:52:49 +08:00
"nodemon": "^3.0.1",
2024-06-16 11:29:47 +08:00
"preline": "^2.3.0",
"prettier": "^3.0.3",
2024-06-08 20:52:49 +08:00
"rollup": "^4.16.4",
2024-06-10 14:10:09 +08:00
"tailwindcss": "^3.4.3",
2024-06-18 09:48:08 +08:00
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
2023-03-04 14:30:13 +08:00
},
2024-06-11 22:14:33 +08:00
"exports": {
"./config": {
"import": "./src/config/index.js"
},
"./db": {
"import": "./src/db/index.js"
},
"./mys": {
"import": "./src/mys/index.js"
},
"./utils": {
"import": "./src/utils/index.js"
},
"./core": {
"import": "./src/core/index.js"
},
2024-06-17 13:19:18 +08:00
"./init": {
"import": "./src/init/index.js"
},
"./image": {
"import": "./src/image/index.js"
},
2024-06-11 22:14:33 +08:00
"./image/types": {
2024-06-17 13:19:18 +08:00
"import": "./src/image/types.js"
2024-06-11 22:14:33 +08:00
}
},
2023-03-08 02:39:01 +08:00
"imports": {
"#miao": "./plugins/miao-plugin/components/index.js",
"#miao.models": "./plugins/miao-plugin/models/index.js"
2023-03-04 14:30:13 +08:00
}
}