-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "yuan-bot",
"version": "1.0.0",
"description": "渊家糟粕机器人",
"main": "index.ts",
"scripts": {
"dev": "tsx src/index.ts",
"build": "pnpm run build:lib && pnpm run build:types",
"build:lib": "tsup",
"build:types": "tsc --emitDeclarationOnly --declaration",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@types/node": "^18.0.6",
"axios": "^0.27.2",
"express": "^4.18.2",
"http-errors": "^2.0.0",
"mongoose": "^6.4.3",
"oicq": "^2.3.1",
"tsup": "^6.1.3",
"tsx": "^3.7.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/http-errors": "^2.0.1",
"@types/express": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0"
}
}