-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"scripts": {
"clean": "rimraf bin cache obj output temp wwwroot",
"build": "UV_THREADPOOL_SIZE=32 tsx --no-deprecation ./src/index.ts build",
"build-prod": "tsx --no-deprecation ./src/index.ts build --minify",
"serve": "http-server output --port 5080 -c-1",
"format:fix": "prettier --write .",
"lint": "tsc --noEmit && DEBUG=eslint:eslint eslint ."
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/recommended": "^1.0.8",
"@types/eslint__js": "^8.42.3",
"@types/html-minifier": "^4.0.5",
"@types/jsdom": "^21.1.7",
"@types/minimist": "^1.2.5",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-love": "^113.0.0",
"eta": "^3.5.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.0",
"html-minifier": "^4.0.0",
"http-server": "^14.1.1",
"image-size": "^1.2.0",
"jsdom": "^25.0.1",
"marked": "^15.0.4",
"marked-directive": "^1.0.7",
"marked-highlight": "^2.2.1",
"minimist": "^1.2.8",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"sharp": "^0.33.5",
"svgo": "^3.3.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"yup": "^1.6.1"
},
"prettier": {
"printWidth": 120,
"overrides": [
{
"files": "*.eta",
"options": {
"parser": "html"
}
}
]
}
}