-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.51 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
50
51
52
53
54
55
56
{
"name": "g7xu-github-io",
"type": "module",
"version": "1.0.0",
"scripts": {
"copy:wiki-images": "mkdir -p public/wiki-images && cp -r obs_notes/attachments/* public/wiki-images/ 2>/dev/null || true",
"dev": "npm run copy:wiki-images && astro dev",
"build": "npm run copy:wiki-images && astro build",
"preview": "astro preview",
"clean": "rm -rf dist",
"check": "astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{astro,ts,css,md}\"",
"format:check": "prettier --check \"src/**/*.{astro,ts,css,md}\"",
"prepare": "husky"
},
"lint-staged": {
"*.{astro,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{css,md,json}": [
"prettier --write"
]
},
"dependencies": {
"@types/katex": "^0.16.8",
"astro": "^6.1.10",
"d3": "^7.9.0",
"katex": "^0.16.38",
"marked": "^17.0.3"
},
"overrides": {
"lodash": ">=4.18.1",
"svgo": ">=4.0.1",
"devalue": ">=5.8.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@types/d3": "^7.4.3",
"@types/node": "^25.3.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-plugin-astro": "^1.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"topojson-client": "^3.1.0",
"typescript": "^5.9.3",
"us-atlas": "^3.0.1",
"world-atlas": "^2.0.2"
}
}