mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
21 lines
551 B
JSON
21 lines
551 B
JSON
{
|
|
"name": "napcat",
|
|
"private": true,
|
|
"type": "module",
|
|
"version": "4.9.42",
|
|
"scripts": {
|
|
"build:shell": "pnpm --filter napcat-shell run build || exit 1",
|
|
"build:framework": "pnpm --filter napcat-framework run build || exit 1",
|
|
"build:webui": "pnpm --filter napcat-webui-frontend run build || exit 1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
"vite": "^6.4.1",
|
|
"vite-plugin-cp": "^6.0.3"
|
|
},
|
|
"dependencies": {
|
|
"silk-wasm": "^3.6.1",
|
|
"express": "^5.0.0",
|
|
"ws": "^8.18.3"
|
|
}
|
|
} |