-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.96 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
{
"private": true,
"name": "extension.js.org",
"version": "1.0.0",
"description": "The 🧩 Extension official documentation website.",
"scripts": {
"dev": "rspress dev",
"build": "rspress build",
"preview": "rspress preview",
"sort-projects-words": "node ./sortProjectWords.js",
"check:lint": "biome check --diagnostic-level=warn --write",
"check:lint-ci": "biome check --diagnostic-level=warn",
"check:format": "prettier . --write",
"check:format-ci": "prettier . --check",
"check:spell": "npx cspell",
"check:case": "npx case-police docs/**/*.{md,mdx}",
"check": "pnpm run check:lint && pnpm run check:format && pnpm run check:spell",
"check:ci": "pnpm run check:lint-ci && pnpm run check:format-ci && pnpm run check:spell"
},
"author": "Cezar Augusto",
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@rstack-dev/doc-ui": "^1.5.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"embla-carousel-react": "^8.3.0",
"framer-motion": "^11.9.0",
"lucide-react": "^0.446.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-gist": "^1.2.4",
"react-icon-cloud": "^4.1.4",
"react-tweet": "^3.2.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/semver": "^7.5.8",
"case-police": "0.7.0",
"cspell": "^8.14.2",
"cspell-ban-words": "0.0.3",
"prettier": "3.3.3",
"rsbuild-plugin-google-analytics": "1.0.2",
"rsbuild-plugin-open-graph": "1.0.2",
"rspress": "1.29.0",
"rspress-plugin-sitemap": "^1.1.1",
"typescript": "^5.5.4"
}
}