-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "expression-editor",
"version": "1.0.0",
"license": "MIT",
"private": false,
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"dev": "cd example && vite --port 3000 --force",
"build": "tsc && vite build",
"postinstall": "[ -d example ] && cd example && yarn || true"
},
"dependencies": {
"case": "^1.6.3"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-observing": "^2.6.16",
"react-use-drag-and-drop": "^1.1.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.12.5",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"@types/uuid": "^9.0.8",
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-observing": "^2.6.16",
"react-use-drag-and-drop": "^1.1.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4",
"uuid": "^9.0.1",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1"
}
}