-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.45 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.45 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
81
82
83
84
85
86
{
"name": "react-datalist-input",
"version": "3.3.0",
"description": "react-datalist-input provides a React datalist/combobox component called DatalistInput. The component contains an input field with a dropdown menu of suggestions based on the current input.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andrelandgraf/react-datalist-input.git"
},
"homepage": "https://github.com/andrelandgraf/react-datalist-input",
"bugs": "https://github.com/andrelandgraf/react-datalist-input/issues",
"authors": [
"Andre Landgraf <andre.timo.landgraf@gmail.com>"
],
"tags": [
"react",
"datalist",
"input",
"select",
"autocomplete",
"combobox",
"highlight",
"dropdown",
"aria-combobox"
],
"keywords": [
"react",
"datalist",
"input",
"select",
"autocomplete",
"combobox",
"highlight",
"dropdown",
"aria-combobox"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^10.4.9",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.2.0",
"prettier": "^2.5.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^2.70.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.41.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"clean": "rimraf ./dist",
"build:css": "sass src/styles.scss dist/styles.css",
"build": "npm run clean && npm run build:css && rollup -c",
"prepublish": "npm run lint && npm run test && npm run build",
"publish:package": "npm run prepublish && npm publish",
"dev:css": "sass --watch src/styles.scss dist/styles.css",
"dev": "rollup -c -w"
}
}