-
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.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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": "hobrlog",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "node --test --experimental-strip-types tests/*.test.ts",
"prepare": "husky",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@astrojs/sitemap": "^3.7.2",
"@myriaddreamin/typst-ts-node-compiler": "0.7.0-rc2",
"@myriaddreamin/typst-ts-renderer": "0.7.0-rc2",
"@myriaddreamin/typst.ts": "0.7.0-rc2",
"astro": "^6.3.7",
"astro-typst": "^0.12.3",
"terminal.css": "^0.7.5",
"typescript": "^6.0.3"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@eslint/css": "^1.2.0",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@types/node": "^25.9.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"prettier-plugin-astro": "0.14.1",
"typescript-eslint": "^8.60.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}