-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.77 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"dependencies": {
"@iarna/toml": "^2.2.5",
"ajv": "^8.8.2",
"axios": "^1.6.5",
"chalk": "^4.1.1",
"checksum": "^1.0.0",
"cheerio": "^1.0.0-rc.10",
"iconv-lite": "^0.6.3",
"ini": "^4",
"lanzou-api": "^0.1.7",
"libaria2-ts": "^1.0.91",
"minimist": "^1.2.5",
"ora": "8",
"piscina": "^3",
"rcinfo": "^0.1.3",
"shelljs": "^0.8.5",
"toml": "^3.0.0",
"ts-results": "^3.3.0",
"tslib": "^2.4.0",
"typescript": "^5"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"serve": "tsc && node dist/src/index.js",
"dev": "tsc && node dist/src/index.js -d",
"check": "tsc --noEmit",
"new": "ts-node scripts/new.ts",
"gen": "ts-node ./scripts/genSchema.ts",
"fmt": "prettier --write .",
"lint": "eslint . --fix",
"prepare": "husky && del /s /q dist",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@types/checksum": "^0.1.33",
"@types/iconv-lite": "^0.0.1",
"@types/ini": "^4",
"@types/json-schema": "^7.0.12",
"@types/minimist": "^1.2.2",
"@types/node": "^18.17.1",
"@types/prettier": "^3",
"@types/shelljs": "^0.8.10",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9",
"lint-staged": "^15",
"prettier": "^3.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript-json-schema": "^0.65.1",
"vitepress": "^0.21.6"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "[email protected]"
}