NapCatQQ/src/core/package.json
2024-07-01 13:18:59 +08:00

46 lines
1.2 KiB
JSON

{
"name": "@napneko/core",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint --fix ./src/**/*.ts",
"build": "npx tsc --target es2022 --experimentalDecorators && node ./scripts/obfuscator.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NapNeko/core.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/NapNeko/core/issues"
},
"homepage": "https://github.com/NapNeko/core#readme",
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@swc/core": "^1.6.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"typescript": "^5.4.5",
"vite": "^5.2.8",
"vite-plugin-babel": "^1.2.0",
"vite-plugin-dts": "^3.8.1"
},
"dependencies": {
"@log4js-node/log4js-api": "^1.0.2"
}
}