forked from JasonColeyNZ/react-multiselect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.34 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
76
77
78
79
{
"name": "@uc-react-ui/multiselect",
"version": "0.1.1",
"description": "Simple React multi select component with Tailwind CSS",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"build:dev": "rm -r example/node_modules/@uc-react-ui/multiselect && cd example && npm i",
"build:watch": "nodemon --watch src -e ts,tsx -x \"npm run build:dev\"",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run prettier && npm run lint",
"postcss": "postcss ./main.css -o dist/main.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umutdeveloper/react-multiselect.git"
},
"keywords": [
"combobox",
"multiselect",
"form",
"input",
"react",
"react-component",
"typescript",
"select",
"ui",
"tailwind"
],
"author": "Umut CAKIR (umutdeveloper)",
"license": "MIT",
"bugs": {
"url": "https://github.com/umutdeveloper/react-multiselect/issues"
},
"homepage": "https://github.com/umutdeveloper/react-multiselect#readme",
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.4.1",
"nodemon": "^2.0.20",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"react": ">=18"
},
"files": [
"dist",
"LICENCE",
"README.md"
]
}