-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
53 lines (53 loc) · 1.77 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
{
"name": "splashkit.io",
"type": "module",
"version": "0.9",
"scripts": {
"dev": "npm run generate-mdx && npm run generate-usage-examples-pages && npm run generate-groups && astro dev",
"start": "npm run generate-mdx && npm run generate-usage-examples-pages && npm run generate-groups && astro dev",
"build": "npm run generate-mdx && npm run generate-usage-examples-pages && npm run generate-groups && astro build",
"preview": "astro preview",
"astro": "astro",
"generate-mdx": "node ./scripts/components.cjs",
"generate-usage-examples-pages": "node ./scripts/usage-example-page-generation.cjs",
"check-links": "SET CHECK_LINKS=true && npm run build && SET CHECK_LINKS=false",
"generate-groups": "node ./scripts/generate-groups.cjs"
},
"dependencies": {
"@astrojs/netlify": "^5.4.0",
"@astrojs/prism": "^3.1.0",
"@astrojs/react": "^3.6.0",
"@astrojs/sitemap": "^3.1.6",
"@astrojs/solid-js": "^4.4.0",
"@astrojs/starlight": "^0.28.2",
"@mdx-js/mdx": "3.0.1",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.0",
"astro": "^4.11.5",
"astro-embed": "0.7.2",
"astro-expressive-code": "0.35.3",
"astro-icon": "^0.8.2",
"dotenv": "16.4.5",
"front-matter": "4.0.2",
"fs": "0.0.2",
"gray-matter": "4.0.3",
"js-yaml": "^4.1.0",
"kleur": "4.1.5",
"path": "0.12.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"rehype-mathjax": "^6.0.0",
"remark-frontmatter": "5.0.0",
"remark-math": "^6.0.0",
"sharp": "0.33.4",
"solid-js": "1.8.17",
"squoosh": "0.0.0",
"starlight-blog": "^0.14.1",
"starlight-links-validator": "0.10.1",
"swiper": "11.1.3",
"tailwindcss": "3.4.3"
},
"devDependencies": {
"accessible-astro-components": "2.3.6"
}
}