-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "napi-rs-docs",
"private": true,
"version": "1.0.0",
"description": "Website for https://napi.rs",
"author": "lynweklm@gmail.com",
"license": "MIT",
"type": "module",
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"dependencies": {
"@mdx-js/react": "^3.0.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@vercel/analytics": "^1.5.0",
"@waaark/luge": "^0.6.20-beta",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"gsap": "^3.13.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.577.0",
"next": "15.5.15",
"nextra": "2.13.4",
"nextra-theme-docs": "2.13.4",
"react": "^19",
"react-device-detect": "^2.2.3",
"react-dom": "^19",
"react-fast-marquee": "^1.6.5",
"react-use": "^17.6.0",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@napi-rs/image": "^1.11.0",
"@perfsee/webpack": "^1.14.2",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.0.0",
"@types/postcss-functions": "^4",
"@types/react": "^19.0.0",
"autoprefixer": "^10.4.21",
"cross-env": "^10.0.0",
"file-loader": "^6.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"postcss": "^8.5.6",
"postcss-functions": "^4.0.2",
"postcss-import": "^16.1.1",
"prettier": "^3.6.2",
"pretty-bytes": "^7.0.0",
"shadcn": "^3.0.0",
"sharp": "^0.34.2",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.5",
"typescript": "^5.8.3",
"vercel": "^50.0.0"
},
"scripts": {
"dev": "next",
"start": "next start",
"build": "next build && yarn sitemap && yarn test:sitemap",
"build:en": "next build",
"build:cn": "cross-env LOCALE=cn next build",
"build:pt-BR": "cross-env LOCALE=pt-BR next build",
"postbuild": "node scripts/generate-sitemap.js",
"sitemap": "node scripts/generate-sitemap.js",
"test:sitemap": "node scripts/test-sitemap.js",
"format": "prettier -w .",
"postinstall": "husky install"
},
"lint-staged": {
"*.@(js|jsx|yml|yaml|json|md)": [
"prettier --write"
]
},
"packageManager": "yarn@4.14.1",
"resolutions": {
"@headlessui/react": "2.2.10",
"next-mdx-remote": "6.0.0",
"@mdx-js/react": "^3.0.0"
}
}