-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.8 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@szhsin/react-autocomplete",
"version": "1.0.2",
"description": "A modular, lightweight, and headless React autocomplete solution.",
"author": "Zheng Song",
"license": "MIT",
"repository": "szhsin/react-autocomplete",
"homepage": "https://szhsin.github.io/react-autocomplete/",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./types/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"features/",
"types/"
],
"keywords": [
"react",
"autocomplete",
"select",
"combobox",
"dropdown",
"headless"
],
"scripts": {
"start": "run-p watch \"types -- --watch\"",
"bundle": "rollup -c",
"watch": "rollup -c -w",
"clean": "rm -Rf dist types",
"types": "tsc",
"prepare": "rm -Rf types/__tests__",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pret": "prettier -c .",
"pret:fix": "prettier -w .",
"build": "run-s pret clean types lint bundle",
"test": "jest",
"test:watch": "jest --watch",
"eg": "npm run dev --prefix examples"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./dist/cjs/index.cjs",
"default": "./dist/esm/index.mjs"
},
"./features/atom": {
"types": "./types/features/atom/index.d.ts",
"require": "./dist/cjs/features/atom/index.cjs",
"default": "./dist/esm/features/atom/index.mjs"
},
"./features/molecule": {
"types": "./types/features/molecule/index.d.ts",
"require": "./dist/cjs/features/molecule/index.cjs",
"default": "./dist/esm/features/molecule/index.mjs"
}
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.8.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"babel-plugin-pure-annotations": "^0.1.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.7.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-hooks-addons": "^0.4.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.20.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
}
}