forked from all-thoughts-are-broken/hakush-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 819 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 819 Bytes
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
{
"name": "hakush-api",
"version": "1.0.0",
"description": "一个 Hakush 数据库整合库",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc && tsc-alias",
"lint": "prettier --check ./**/*.{ts,js,vue}",
"lint:fix": "prettier --write ./**/*.{ts,js,vue,md}",
"test": "jest",
"test-c": "jest --coverage",
"clean": "rimraf dist"
},
"engines": {
"node": ">= v14"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.16.11",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.4",
"tsc-alias": "^1.8.16",
"typescript": "^5.6.3"
},
"dependencies": {
"axios": "^1.9.0",
"log4js": "^6.9.1"
}
}