-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "pdl-react-autocomplete",
"version": "1.3.0",
"description": "A react component for the People Data Labs Autocomplete API",
"source": "src/index.ts",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"targets": {
"main": {
"includeNodeModules": false,
"isLibrary": true
},
"module": {
"includeNodeModules": false,
"isLibrary": true
}
},
"files": [
"dist/**"
],
"scripts": {
"lint": "eslint src --fix",
"dev": "parcel watch -p 3006",
"build": "parcel build",
"pub": "yarn run build && yarn publish"
},
"repository": "https://github.com/peopledatalabs/pdl-react-autocomplete.git",
"keywords": [
"peopledatalabs",
"People Data Labs",
"autocomplete",
"react",
"react component"
],
"author": "People Data Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/peopledatalabs/pdl-react-autocomplete/issues"
},
"devDependencies": {
"@parcel/packager-ts": "^2.13.3",
"@parcel/transformer-react-refresh-wrap": "^2.13.3",
"@parcel/transformer-typescript-types": "^2.13.3",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"eslint-plugin-unused-imports": "^3.2.0",
"parcel": "^2.13.3",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"dependencies": {}
}