-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 772 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 772 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
28
29
30
31
32
33
34
35
{
"name": "jsx-runner",
"private": false,
"version": "1.0.0",
"type": "module",
"description": "一个专门用于内容创作和预览的轻量级 React 应用平台",
"author": "",
"license": "MIT",
"keywords": [
"react",
"jsx",
"runner",
"content-creation",
"preview",
"vite"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src/**/*.{js,jsx}",
"lint:fix": "eslint src/**/*.{js,jsx} --fix"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"lucide-react": "^0.263.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.0.3",
"vite": "^4.4.5",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0"
}
}