-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "sapegin",
"type": "module",
"private": true,
"license": "See license in <Readme.md>",
"scripts": {
"start": "astro dev",
"prebuild": "npm run sync",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "npm run lint:js && npm run lint:text",
"lint:js": "eslint . --cache --fix",
"lint:text": "textlint \"src/content/blog/*.md\"",
"lint:text:fix": "npm run lint:text -- --fix",
"format": "prettier --log-level warn --write \"**/*.{js,ts,tsx,astro,md}\"",
"pretest": "npm run lint",
"test": "astro check",
"sync": "tsx scripts/sync-book; tsx scripts/sync-squirrelsong",
"posttest": "npm run format",
"prepare": "husky; panda codegen"
},
"engines": {
"node": ">=20"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/react": "^4.0.0",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@pandacss/dev": "^0.49.0",
"@types/lodash": "^4.17.13",
"@types/react": "^18.3.11",
"astro": "^5.0.3",
"astro-og-canvas": "^0.5.5",
"clsx": "^2.1.1",
"csstype": "^3.1.3",
"fs-extra": "^11.2.0",
"github-slugger": "^2.0.0",
"glob": "^11.0.0",
"gray-matter": "^4.0.3",
"hex-rgb": "^5.0.0",
"image-size": "^1.1.1",
"lodash": "^4.17.21",
"markdown-it": "^14.1.0",
"markdown-to-jsx": "^7.7.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-group": "^4.0.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"richtypo": "^7.0.1",
"romanize": "^1.1.1",
"sanitize-html": "^2.13.1",
"shiki": "^1.24.1",
"strip-json-comments": "^5.0.1",
"tamia": "^7.1.11",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@eslint/markdown": "^6.2.1",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.2",
"@types/sanitize-html": "^2.13.0",
"eslint": "^9.16.0",
"eslint-config-tamia": "^9.2.1",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "3.4.2",
"prettier-plugin-astro": "^0.14.1",
"textlint": "^14.4.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "^2.1.4",
"textlint-rule-no-dead-link": "^5.2.0",
"textlint-rule-stop-words": "^5.1.2",
"textlint-rule-terminology": "^5.2.12",
"textlint-rule-write-good": "^2.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,astro,json,md}": "prettier --write",
"*.{js,cjs,mjs,ts,tsx,astro}": "eslint --cache --fix"
}
}