NapCatQQ/package.json

56 lines
1.6 KiB
JSON
Raw Normal View History

2024-10-01 14:48:31 +00:00
{
"name": "napcat",
"private": true,
"type": "module",
2024-11-13 09:53:56 +00:00
"version": "3.7.0",
2024-10-01 14:48:31 +00:00
"scripts": {
"build:framework": "vite build --mode framework",
"build:shell": "vite build --mode shell",
"build:webui": "cd ./src/webui && vite build",
"lint": "eslint --fix src/**/*.{js,ts}",
"depend": "cd dist && npm install --omit=dev"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
2024-11-08 07:43:27 +00:00
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
2024-11-08 04:36:25 +00:00
"@eslint/js": "^9.14.0",
2024-10-01 14:48:31 +00:00
"@log4js-node/log4js-api": "^1.0.2",
2024-11-11 20:02:19 +00:00
"@napneko/nap-proto-core": "^0.0.4",
2024-10-01 14:48:31 +00:00
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^22.0.1",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
2024-10-23 09:54:12 +00:00
"ajv": "^8.13.0",
"async-mutex": "^0.5.0",
"commander": "^12.1.0",
"cors": "^2.8.5",
2024-11-08 04:36:25 +00:00
"eslint": "^9.14.0",
2024-10-01 14:48:31 +00:00
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
2024-10-02 03:29:05 +00:00
"fast-xml-parser": "^4.3.6",
2024-10-01 14:48:31 +00:00
"file-type": "^19.0.0",
2024-11-08 04:36:25 +00:00
"globals": "^15.12.0",
2024-10-02 03:29:05 +00:00
"image-size": "^1.1.1",
2024-10-23 09:54:12 +00:00
"json-schema-to-ts": "^3.1.1",
"typescript": "^5.3.3",
2024-11-08 04:36:25 +00:00
"typescript-eslint": "^8.13.0",
2024-10-23 09:54:12 +00:00
"vite": "^5.2.6",
"vite-plugin-cp": "^4.0.8",
2024-11-13 04:19:18 +00:00
"vite-tsconfig-paths": "^5.1.0",
2024-11-14 02:27:10 +00:00
"winston": "^3.17.0",
2024-11-14 03:03:11 +00:00
"fluent-ffmpeg": "^2.1.2"
2024-10-02 03:29:05 +00:00
},
"dependencies": {
"express": "^5.0.0",
2024-10-01 14:48:31 +00:00
"silk-wasm": "^3.6.1",
2024-11-14 03:03:11 +00:00
"ws": "^8.18.0",
"qrcode-terminal": "^0.12.0"
2024-10-01 14:48:31 +00:00
}
2024-11-14 03:03:11 +00:00
}