-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "@zolplay/react",
"version": "0.5.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "pnpm run build --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --ext .ts,.tsx"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.1",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-scroll-area": "^1.0.1",
"@stitches/react": "^1.2.8",
"@zolplay/config": "workspace:*",
"@zolplay/utils": "workspace:*",
"nanoid": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"string-hash": "^1.1.3",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.21",
"@types/string-hash": "^1.1.1",
"@types/tinycolor2": "^1.4.3",
"@vitejs/plugin-react": "^2.1.0",
"@zolplay/tsconfig": "workspace:*",
"jsdom": "^20.0.1",
"typescript": "^4.8.4",
"vite": "^3.1.8"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}