-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.9 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
{
"name": "docs-template",
"version": "0.1.0",
"description": "A NukeHub-first documentation template — plain Astro + React + Tailwind v4.",
"type": "module",
"scripts": {
"sync-docs": "node scripts/sync-docs.mjs",
"predev": "npm run sync-docs",
"dev": "astro dev --host",
"prebuild": "npm run sync-docs",
"build": "astro build",
"preview": "astro preview --host",
"check": "astro check",
"format": "prettier --write \"src/**/*.{ts,tsx,astro,css,scss,json,md,yml,yaml}\" \"*.{json,md,mjs,cjs,yml,yaml}\" \"scripts/**/*.{js,mjs}\" \".github/workflows/*.yml\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,astro,css,scss,json,md,yml,yaml}\" \"*.{json,md,mjs,cjs,yml,yaml}\" \"scripts/**/*.{js,mjs}\" \".github/workflows/*.yml\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"astro": "astro"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nukehub-dev/docs-template.git"
},
"license": "BSD-2-Clause",
"dependencies": {
"@astrojs/mdx": "^7.0.3",
"@astrojs/react": "^6.0.1",
"@astrojs/sitemap": "^3.7.3",
"@tailwindcss/vite": "^4.3.2",
"astro": "^7.0.9",
"clsx": "^2.1.1",
"framer-motion": "^13.1.1",
"lucide-react": "^1.24.0",
"mermaid": "^11.17.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.2",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@astrojs/check": "^0.9.9",
"@eslint/js": "^10.0.1",
"@tailwindcss/typography": "^0.5.20",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^10.7.0",
"eslint-plugin-astro": "^3.0.1",
"globals": "^17.7.0",
"prettier": "^3.9.5",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.35.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"@types/turndown": "^5.0.6"
}
}