-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.68 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
{
"name": "vanntile.com",
"version": "4.5.3",
"private": true,
"author": "vanntile",
"license": "(MIT OR CC-BY-NC-SA-4.0)",
"keywords": [
"blog",
"portfolio",
"astro",
"mdx"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vanntile/vanntile.com.git"
},
"scripts": {
"astro": "astro",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"format": "prettier -w 'src/**/*.{astro,js,ts}'",
"prettier": "prettier",
"prepare": "husky",
"release": "standard-version --no-verify --sign"
},
"devDependencies": {
"@astrojs/mdx": "^3.1.0",
"@astrojs/sitemap": "^3.1.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@shikijs/transformers": "^1.6.5",
"astro": "^4.10.2",
"astro-purgecss": "^4.1.1",
"cloudinary": "^2.2.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"mdast-util-to-string": "^4.0.0",
"node-html-parser": "^6.1.13",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0",
"prettier-plugin-css-order": "^2.1.2",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.13.2",
"rehype-slug": "^6.0.0",
"rehype-sort-attributes": "^5.0.0",
"rehype-toc": "^3.0.2",
"remark-hint": "^1.0.10",
"shiki": "^1.6.5",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"unist-util-visit": "^5.0.0"
},
"engines": {
"node": "22.2.0",
"npm": "10.8.0"
},
"lint-staged": {
"*.{astro,js,ts}": [
"prettier --staged --write"
]
},
"typings": "src/env.d.ts"
}