-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.76 KB
/
package.json
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
{
"name": "aiwan.run",
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"author": "Brendan Dash <[email protected]> (https://aiwan.run/)",
"repository": {
"type": "git",
"url": "https://github.com/Debbl/aiwan.run.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:analyze": "ANALYZE=true next build",
"typecheck": "tsc --noEmit",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@bprogress/next": "^3.2.10",
"@codesandbox/sandpack-react": "^2.20.0",
"@debbl/ahooks": "^0.4.1",
"@debbl/utils": "^0.2.2",
"@radix-ui/react-radio-group": "^1.2.4",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-separator": "^1.1.3",
"@workspace/icons": "workspace:*",
"@workspace/motion": "workspace:*",
"date-fns": "^4.1.0",
"next": "^15.2.5",
"next-themes": "^0.4.6",
"next-view-transitions": "^0.3.4",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-medium-image-zoom": "^5.2.14",
"react-snowfall": "^2.2.0",
"twl": "0.0.0"
},
"devDependencies": {
"@debbl/eslint-config": "^3.10.2",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/bundle-analyzer": "^15.2.5",
"@next/mdx": "^15.2.5",
"@serwist/next": "^9.0.13",
"@tailwindcss/postcss": "^4.1.3",
"@types/hast": "^3.0.4",
"@types/loader-utils": "^2.0.6",
"@types/markdown-it": "^14.1.2",
"@types/mdx": "^2.0.13",
"@types/node": "^22.14.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@types/rss": "^0.0.32",
"@workspace/remark-plugins": "workspace:*",
"autoprefixer": "^10.4.21",
"eslint": "^9.24.0",
"github-slugger": "^2.0.0",
"globby": "^14.1.0",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.3",
"lint-staged": "^15.5.0",
"loader-utils": "^3.3.1",
"markdown-it": "^14.1.0",
"postcss": "^8.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"rehype-github-alerts": "^4.1.1",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-github": "^12.0.0",
"remark-mdx-frontmatter": "^5.1.0",
"rss": "^1.2.2",
"satori": "^0.12.2",
"serwist": "^9.0.13",
"sharp": "^0.34.1",
"shiki": "^3.2.1",
"simple-git-hooks": "^2.12.1",
"tailwindcss": "^4.1.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"es5-ext",
"esbuild",
"sharp",
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}