-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
{
"name": "react-country-dropdown",
"version": "3.0.0",
"description": "A simple react country selection dropdown component",
"keywords": [
"country",
"select",
"dropdown",
"react-dropdown"
],
"repository": "https://github.com/rocktimsaikia/react-country-dropdown",
"license": "MIT",
"author": {
"name": "Rocktim Saikia",
"email": "[email protected]",
"url": "https://github.com/rocktimsaikia"
},
"type": "module",
"main": "dist/react-country-dropdown.umd.js",
"module": "dist/react-country-dropdown.es.js",
"source": "src/index.tsx",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"build-storybook": "storybook build",
"release": "pnpm build && np --no-tests",
"storybook": "storybook dev -p 6006",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-actions": "^8.2.7",
"@storybook/addon-essentials": "^8.2.7",
"@storybook/addon-interactions": "^8.2.7",
"@storybook/addon-links": "^8.2.7",
"@storybook/addon-onboarding": "^8.2.7",
"@storybook/blocks": "^8.2.7",
"@storybook/react": "^8.2.7",
"@storybook/react-vite": "^8.2.7",
"@storybook/test": "^8.2.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.2.7",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "4.0.0-beta.2"
},
"peerDependencies": {
"react": "^18.2.0"
},
"engines": {
"node": ">=18"
}
}