-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.18 KB
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
{
"name": "docs-tools",
"version": "1.0.0",
"description": "专业版编辑器文档工具",
"author": "JLCEDA <support@lceda.cn>",
"license": "Apache-2.0",
"homepage": "https://pro.lceda.cn/",
"engines": {
"node": ">=20.17.0"
},
"scripts": {
"compile": "rimraf ./dist/ && ts-node ./config/esbuild.prod.ts",
"prepare": "simple-git-hooks",
"lint": "eslint",
"fix": "eslint --fix",
"build": "npm run compile && ts-node ./build/packaged.ts"
},
"dependencies": {
"html2canvas": "^1.4.1",
"marked": "^16.2.0",
"mathjax": "^3.2.2",
"texsvg": "^2.3.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@jlceda/pro-api-types": "^0.2.27",
"@microsoft/tsdoc": "^0.15.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/fs-extra": "^11.0.4",
"esbuild": "^0.24.2",
"eslint": "^9.37.0",
"eslint-plugin-tsdoc": "^0.4.0",
"fs-extra": "^11.3.0",
"ignore": "^7.0.3",
"jszip": "^3.10.1",
"lint-staged": "^16.2.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}