mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-18 20:30:08 +08:00
Introduces the napcat-develop package with its own package.json and tsconfig.json. Updates build and dev scripts in the root package.json, modifies loadNapCat.cjs to adjust paths and output directories, and updates nodeTest.ps1 to use the correct script path.
27 lines
509 B
JSON
27 lines
509 B
JSON
{
|
|
"name": "napcat-develop",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "index.cjs",
|
|
"scripts": {
|
|
"dev": "powershell ./nodeTest.ps1"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"require": "./index.cjs"
|
|
},
|
|
"./*": {
|
|
"require": "./*"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"fs-extra": "^11.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
} |