-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.19 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
{
"type": "module",
"name": "root",
"version": "0.4.2",
"description": "The tools to create awesome websites.",
"keywords": ["pages", "pagesjs", "7rs.dev"],
"homepage": "https://7rs.dev/",
"bugs": "https://github.com/7rs/pages/issues",
"license": "CC0-1.0",
"repository": "github:7rs/pages",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"sync": "astro sync",
"check": "astro check",
"search": "pnpm pagefind --site dist",
"benchmark": "lighthouse http://localhost:2999/ --quiet --view --emulated-form-factor mobile --output-path mobile-lighthouse.html"
},
"dependencies": {
"@astrojs/check": "^0.6.0",
"@astrojs/mdx": "^3.0.0",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.4",
"@astrojs/svelte": "^5.4.0",
"@iconify-json/cib": "^1.1.8",
"@iconify-json/line-md": "^1.1.37",
"@iconify-json/material-symbols": "^1.1.79",
"@iconify-json/mdi": "^1.1.66",
"@iconify-json/simple-icons": "^1.1.101",
"@iconify/svelte": "^4.0.2",
"@pagesjs/cli": "workspace:^",
"@pagesjs/ui": "workspace:^",
"@webcomponents/template-shadowroot": "^0.2.1",
"astro": "^4.8.2",
"astro-icon": "^1.1.0",
"astro-pagefind": "^1.5.0",
"astro-purgecss": "^4.1.1",
"astro-robots-txt": "^1.0.0",
"autoprefixer": "^10.4.19",
"postcss-preset-env": "^9.5.11",
"purgecss": "^6.0.0",
"qs": "^6.12.1",
"sharp": "^0.33.3",
"svelte": "^4.2.16",
"typescript": "^5.4.5"
},
"devDependencies": {
"@types/node": "^20.12.11",
"lighthouse": "^12.0.0",
"pagefind": "^1.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"prettier-plugin-stylus": "^0.1.0",
"prettier-plugin-svelte": "^3.2.3",
"stylelint-config-html": "^1.1.0",
"stylelint-stylus": "^1.0.0",
"stylus": "^0.63.0"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"private": true,
"workspaces": ["packages/*"]
}