-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 994 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
36
37
38
39
40
41
42
{
"name": "excalidraw-plugin-assets",
"version": "0.1.0",
"type": "module",
"main": "src/index.tsx",
"description": "Excalidraw React app for JetBrains plugin",
"keywords": [],
"license": "MIT",
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"awesome-debounce-promise": "^2.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.2",
"typescript": "^5.7.2",
"vite": "^5.4.11"
},
"scripts": {
"start": "vite --port 3006",
"build": "vite build",
"preview": "vite preview --port 3006"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "yarn@4.12.0"
}