-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 793 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 793 Bytes
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
{
"name": "test",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rspress build",
"build:fun": "rspress build -c rspress.config.fun.ts",
"dev": "rspress dev",
"deploy": "bun scripts/docs.js && bun scripts/docs-tf.js && rspress build",
"preview": "rspress preview",
"generate:docs": "rm -rf docs/App\\ Store/*/guide && bun scripts/docs.js",
"generate:docs:tf": "rm -rf docs/TestFlight/*/guide && bun scripts/docs-tf.js"
},
"dependencies": {
"@rspress/core": "^2.0.2",
"compressing": "^2.1.0",
"rspress-plugin-gh-pages": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.8.1",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"react": "^19.2.3",
"react-dom": "^19.2.3"
}
}