-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.21 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
{
"name": "@code-hike/hike",
"version": "0.1.10",
"description": "Run the Hike Next.js app via npx.",
"private": false,
"license": "MIT",
"author": "",
"main": "bin/hike.js",
"bin": {
"hike": "bin/hike.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "HIKE_CWD=./fixtures next dev",
"build": "next build",
"postbuild": "node scripts/clean-next.mjs",
"start": "node bin/hike.js",
"prepack": "npm run build",
"clean": "rm -rf .next",
"publish:npm": "npm publish --access public"
},
"files": [
"bin/",
".next/"
],
"keywords": [
"nextjs",
"cli",
"npx"
],
"dependencies": {
"@mdx-js/mdx": "^3.1.1",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/typography": "^0.5.19",
"clsx": "^2.1.1",
"codehike": "^1.0.7",
"gray-matter": "^4.0.3",
"lucide-react": "^0.564.0",
"next": "16.1.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"seti-icons": "^0.0.4",
"tailwind-merge": "^3.4.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"typescript": "^5"
}
}