-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "spellbook",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "remark . --output --ext md,mdx"
},
"dependencies": {
"@astrojs/check": "^0.5.6",
"@astrojs/mdx": "^2.1.1",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.4.13",
"astro-vtbot": "^1.7.9",
"gray-matter": "^4.0.3",
"remark-cli": "^12.0.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx": "^3.0.1",
"tailwindcss": "^3.4.1",
"turbowatch": "^2.29.4",
"typescript": "^5.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"daisyui": "^4.7.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0"
},
"remarkConfig": {
"settings": {
"bullet": "*"
},
"plugins": [
"remark-frontmatter",
[
"remark-mdx",
{
"printWidth": 80
}
]
]
}
}