forked from meshtastic/meshtastic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.85 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.85 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
90
91
92
93
94
95
{
"name": "meshtastic",
"version": "0.0.0",
"private": true,
"license": "GPL-3.0-only",
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"serve": "docusaurus serve",
"clear": "docusaurus clear",
"pdf": "npx docusaurus-prince-pdf -u http://localhost:3000/docs/about/ --dest ./static/documents/pdf --output ./static/documents/pdf/Meshtastic-Documentation.pdf",
"write-translations": "docusaurus write-translations",
"crowdin": "crowdin",
"crowdin:sync": "docusaurus write-translations && crowdin upload && crowdin download",
"prepare": "husky",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format:fix": "oxfmt .",
"format": "oxfmt --check ."
},
"dependencies": {
"@algolia/client-search": "^5.44.0",
"@crowdin/cli": "^4.11.0",
"@docusaurus/core": "3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/plugin-content-blog": "^3.9.2",
"@docusaurus/plugin-content-docs": "3.9.2",
"@docusaurus/plugin-vercel-analytics": "^3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/theme-common": "3.9.2",
"@docusaurus/theme-mermaid": "3.9.2",
"@giscus/react": "^3.1.0",
"@heroicons/react": "^2.2.0",
"@iconify/react": "^6.0.2",
"@mdx-js/react": "^3.1.1",
"@meshtastic/core": "jsr:@meshtastic/core@^2.6.5",
"@meshtastic/protobufs": "jsr:@meshtastic/protobufs@^2.7.0",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"autoprefixer": "^10.4.22",
"base64-js": "^1.5.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dompurify": "^3.3.0",
"dotenv": "^17.2.3",
"katex": "^0.16.25",
"lucide-react": "^0.562.0",
"postcss": "^8.5.6",
"react": "^19.2.0",
"react-accessible-accordion": "^5.0.1",
"react-dom": "^19.2.0",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-player": "^3.4.0",
"remark-deflist": "^1.0.0",
"swr": "^2.3.6",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@tailwindcss/typography": "^0.5.19",
"@tsconfig/docusaurus": "^2.0.7",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"docusaurus-prince-pdf": "^1.2.1",
"husky": "^9.1.0",
"lint-staged": "^16.0.0",
"oxfmt": "^0.16.0",
"oxlint": "^1.41.0",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"oxlint",
"oxfmt"
]
},
"pnpm": {
"overrides": {
"path-to-regexp": "^3.3.0",
"cookie": "^0.7.0",
"prismjs": "^1.30.0"
},
"ignoredBuiltDependencies": [
"core-js",
"core-js-pure"
]
}
}