-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.22 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "react-dropdown-toolkit",
"version": "0.0.9",
"description": "A searchable dropdown component for React with multiple selection and customizable styles.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"test": "jest --coverage",
"lint": "prettier --check .",
"build": "tsup src/index.ts",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wisnuvb/react-dropdown-toolkit.git"
},
"keywords": [
"react",
"dropdown",
"component",
"searchable",
"multiple-selection",
"customizable"
],
"author": {
"name": "Wisnu Saputro",
"email": "wisnuvb@gmail.com"
},
"license": "ISC",
"peerDependencies": {
"react": "^17.x || ^18.x",
"react-dom": "^17.x || ^18.x",
"tailwindcss": "^3.x"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/node": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/blocks": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-vite": "^7.6.17",
"@storybook/test": "^7.6.17",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"clsx": "^2.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.1",
"postcss": "^8.4.40",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"storybook": "^7.6.17",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.7",
"ts-jest": "^29.2.3",
"ts-loader": "^9.5.1",
"tsup": "^8.0.2",
"typescript": "^5.5.4"
}
}