-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
{
"name": "twenty-something",
"type": "module",
"version": "0.9.0",
"scripts": {
"add": "npm install",
"theme": "node makeThemes.mjs",
"dev": "concurrently \"onchange './src/data/tokens.json' -- npm run theme\" \"npm run theme\" \"astro dev\"",
"start": "astro dev",
"build": "npm run theme && astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"test": "node -v",
"tools": "astro preferences enable devToolbar",
"notools": "astro preferences disable devToolbar"
},
"dependencies": {
"@alpinejs/persist": "^3.14.8",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.3",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@csstools/postcss-global-data": "^3.0.0",
"@iconify-json/lucide": "^1.2.21",
"@iconify-json/ri": "^1.2.5",
"alpinejs": "3.14.8",
"astro": "^5.1.2",
"astro-auto-import": "^0.4.4",
"astro-embed": "^0.9.0",
"astro-icon": "^1.1.5",
"astro-page-insight": "^0.10.0",
"autoprefixer": "^10.4.20",
"github-slugger": "^2.0.0",
"js-yaml": "^4.1.0",
"marked": "^15.0.6",
"open-props": "github:argyleink/open-props#2.0.0beta",
"postcss": "^8.4.49",
"postcss-custom-media": "^11.0.5",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.3",
"rehype-unwrap-images": "^1.0.0",
"remark-callout": "^1.1.1",
"remark-toc": "^9.0.0",
"smartypants": "^0.2.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@types/alpinejs": "3.13.11",
"@types/alpinejs__persist": "^3.13.4",
"@types/mdx": "^2.0.13",
"concurrently": "^9.1.2",
"lightningcss": "^1.28.2",
"onchange": "^7.1.0",
"postcss-jit-props": "^1.0.15",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1"
},
"browserslist": [
"defaults, not Firefox ESR, not IE > 0, not KaiOS > 0, not QQAndroid > 0, not op_mini all, ios < 16.0"
],
"engines": {
"node": ">= 20.1.0",
"npm": ">= 10.2.3"
}
}