forked from adcentury/react-mobile-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-mobile-picker",
"version": "1.0.0",
"description": "An iOS like select box component for React",
"type": "module",
"keywords": [
"react",
"react mobile picker",
"mobile picker",
"picker",
"react-component",
"react components",
"react ui",
"mobile ui"
],
"files": [
"dist",
"README.md"
],
"main": "./dist/react-mobile-picker.umd.cjs",
"module": "./dist/react-mobile-picker.js",
"typings": "./dist/react-mobile-picker.d.ts",
"exports": {
".": {
"import": "./dist/react-mobile-picker.js",
"require": "./dist/react-mobile-picker.umd.cjs"
}
},
"repository": "https://github.com/adcentury/react-mobile-picker",
"license": "MIT",
"scripts": {
"dev": "vite",
"build:lib": "tsc && vite build",
"build:examples": "tsc && vite build --config vite.config.examples.ts",
"lint": "eslint lib examples --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"prepare": "husky install"
},
"lint-staged": {
"lib/**/*.{ts,tsx}": [
"eslint --fix"
],
"examples/**/*.{ts,tsx}": [
"eslint --fix"
]
},
"peerDependencies": {
"react": "^16 || ^17 || ^18",
"react-dom": "^16 || ^17 || ^18"
},
"devDependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@types/node": "^20.4.4",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@vitejs/plugin-react": "^4.0.1",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"husky": "^8.0.3",
"less": "^4.1.3",
"lint-staged": "^14.0.1",
"postcss": "^8.4.26",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-dts": "^3.3.1"
}
}