-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.41 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
41
42
{
"scripts": {
"test": "npx ts-node -r tsconfig-paths/register src/tests/init.ts",
"run": "npx ts-node -r tsconfig-paths/register src/tests/init.ts",
"build-mac": "rm -rf dist/ && tsc -p tsconfig.production.json",
"build-win": "@powershell rd .\\dist\\* -r -Force; tsc -p tsconfig.production.json",
"publish-patch": "@powershell npm run build; npm version patch; npm publish",
"eslint": "eslint . --ext .ts --fix",
"make-docs": "npx typedoc --out docs src/index.ts"
},
"devDependencies": {
"@types/bunyan": "^1.8.8",
"@types/lru-cache": "^7.10.9",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^46.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"tslint": "^6.1.3",
"typedoc": "^0.23.28",
"typescript": "^5.0.2"
},
"dependencies": {
"axios": "^1.3.4",
"bunyan": "^1.8.15",
"dotenv": "^16.0.3",
"kaiheila-bot-root": "^0.2.9",
"lru-cache": "^8.0.4",
"mysql": "^2.18.1",
"prettier": "^2.8.5",
"r6api.js": "^4.4.1"
},
"files": ["dist"]
}