-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.37 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.37 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
107
108
109
110
111
112
113
114
115
116
117
118
{
"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": "pnpm compile && next build && serwist build",
"build:analyze": "ANALYZE=true next build",
"extract": "lingui extract",
"compile": "lingui compile",
"typecheck": "tsc --noEmit",
"start": "next start",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@codesandbox/sandpack-react": "^2.20.0",
"@debbl/ahooks": "^0.4.1",
"@debbl/utils": "^0.2.2",
"@lingui/core": "^5.9.2",
"@lingui/react": "^5.9.2",
"@total-typescript/ts-reset": "^0.6.1",
"babel-plugin-react-compiler": "^1.0.0",
"class-variance-authority": "^0.7.1",
"date-fns": "^4.1.0",
"fumadocs-core": "^16.6.9",
"fumadocs-mdx": "^14.2.9",
"fumadocs-twoslash": "^3.1.14",
"fumadocs-ui": "^16.6.9",
"motion": "12.23.24",
"next": "^16.2.3",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-medium-image-zoom": "^5.4.1",
"react-snowfall": "^2.4.0",
"twl": "0.0.0",
"twoslash": "^0.3.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@debbl/eslint-config": "^3.16.0",
"@lingui/cli": "^5.9.2",
"@lingui/loader": "^5.9.2",
"@lingui/swc-plugin": "^5.11.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/bundle-analyzer": "^16.1.6",
"@next/mdx": "^16.1.6",
"@serwist/cli": "^9.5.6",
"@serwist/next": "^9.5.6",
"@tailwindcss/postcss": "^4.2.1",
"@types/hast": "^3.0.4",
"@types/loader-utils": "^3.0.0",
"@types/markdown-it": "^14.1.2",
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^25.3.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.10.0",
"eslint": "9.39.4",
"eslint-config-prettier": "^10.1.8",
"estree-util-is-identifier-name": "^3.0.0",
"estree-util-value-to-estree": "^3.5.0",
"github-slugger": "^2.0.0",
"globby": "^16.1.1",
"gray-matter": "^4.0.3",
"html-react-parser": "^5.2.17",
"lint-staged": "^16.3.2",
"loader-utils": "^3.3.1",
"markdown-it": "^14.1.1",
"next-auto-import": "0.0.4",
"postcss": "^8.5.8",
"prettier-plugin-tailwindcss": "^0.7.2",
"rehype-github-alerts": "^4.2.0",
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-github": "^12.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"rss": "^1.2.2",
"satori": "^0.26.0",
"serwist": "^9.5.6",
"sharp": "^0.34.5",
"shiki": "^3.23.0",
"simple-git-hooks": "^2.13.1",
"swc-plugin-auto-import": "0.0.7",
"tailwindcss": "^4.2.1",
"toml": "^3.0.0",
"tsdown": "^0.21.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"vfile": "^6.0.3",
"wrangler": "^4.70.0",
"yaml": "^2.8.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}