-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "react-call",
"version": "1.3.0",
"description": "Call your React components",
"repository": "desko27/react-call",
"author": "Ismael Ramon <desko27@gmail.com> (https://desko.dev)",
"license": "MIT",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"module": "./dist/main.js",
"main": "./dist/main.cjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/main.cjs",
"types": "./dist/main.d.ts"
}
},
"scripts": {
"dev": "vite",
"lint": "biome check .",
"test": "exit 0",
"check:types": "tsc --noEmit --p ./tsconfig.lib.json",
"build": "npm run check:types && vite build",
"bundlesize": "npm run build && bundlesize",
"build:site": "npm run check:types && vite build -c vite.site.config.ts",
"release": "np",
"phoenix": "rm -rf node_modules && npm i",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@faker-js/faker": "^9.1.0",
"@midudev/tailwind-animations": "^0.1.0",
"@react-symbols/icons": "^1.2.7",
"@types/node": "^22.8.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"bundlesize": "^0.18.2",
"clsx": "^2.1.1",
"husky": "^9.1.6",
"np": "^10.0.7",
"postcss": "^8.4.47",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup-plugin-node-externals": "^7.1.3",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.0.1"
},
"peerDependencies": {
"react": ">=18"
}
}