forked from nextellarlabs/nextellar-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.11 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
96
97
98
99
100
101
102
103
104
105
106
{
"name": "nextellar-docs",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "Official documentation for Nextellar — a production-ready CLI for scaffolding Next.js + Stellar blockchain dApps with TypeScript, wallet integration, and smart contract support.",
"author": "Nextellar Labs <team@nextellar.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nextellarlabs/nextellar-docs.git"
},
"homepage": "https://docs.nextellar.dev",
"bugs": {
"url": "https://github.com/nextellarlabs/nextellar/issues"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "next dev",
"build": "contentlayer2 build && next build",
"start": "next start",
"lint": "next lint",
"build:content": "contentlayer2 build",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"test": "echo \"No tests configured\" && exit 0",
"test:unit": "vitest run",
"validate:sidebar": "node scripts/validate-sidebar.cjs",
"check:links": "node scripts/check-links.cjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,mdx}": [
"prettier --write"
]
},
"keywords": [
"nextellar",
"nextjs",
"documentation",
"docs",
"cli",
"stellar",
"typescript",
"scaffolding",
"plugin-system",
"nextjs-docs"
],
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@radix-ui/themes": "^3.2.1",
"@types/mdx": "^2.0.13",
"@types/p5": "^1.7.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer2": "0.5.4",
"date-fns": "^4.1.0",
"framer-motion": "^12.5.0",
"gray-matter": "^4.0.3",
"lucide-react": "^0.476.0",
"mermaid": "^11.12.2",
"next": "16.1.3",
"next-contentlayer2": "0.5.4",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.4",
"p5": "^2.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-fox-toast": "^1.10.15",
"react-mermaid": "^0.1.3",
"react-syntax-highlighter": "^15.6.1",
"rehype-highlight": "^7.0.2",
"rehype-slug": "^6.0.0",
"remark-code-import": "^1.2.0",
"remark-gfm": "^4.0.1",
"remark-slug": "^8.0.0",
"tailwind-merge": "^3.0.2",
"tailwindcss-animated": "^2.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.13",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"eslint": "^8.56.0",
"eslint-config-next": "16.1.3",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"prettier": "^3.8.1",
"tailwindcss": "^4.1.3",
"typescript": "^5",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@9.15.4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}