-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 3.91 KB
/
package.json
File metadata and controls
156 lines (156 loc) · 3.91 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "react-command-palette",
"version": "0.22.2",
"description": "WAI-ARIA compliant React command palette like the one in Atom",
"main": "dist/index.js",
"module": "dist/index.es.js",
"scripts": {
"start": "npm run storybook",
"netlify": "react-scripts build",
"dev": "yarn storybook",
"build": "cross-env BABEL_ENV=production rollup -c",
"test": "SKIP_PREFLIGHT_CHECK=true react-scripts test",
"coverage": "yarn test --coverage --watchAll=false --silent --ci",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-storybook-docs": "storybook build --docs",
"release": "auto shipit --base-branch=main",
"chromatic": "chromatic --project-token 5981upe4q43 --exit-zero-on-changes"
},
"resolutions": {
"@storybook/react/babel-loader": "8.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asabaylus/react-command-palette.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20"
},
"keywords": [
"react",
"command",
"palette",
"command palette",
"command-palette",
"accessibile",
"react-component"
],
"author": "Asa Baylus",
"license": "MIT",
"bugs": {
"url": "https://github.com/asabaylus/react-command-palette/issues"
},
"peerDependencies": {
"react": "16 - 19",
"react-dom": "16 - 19"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-replace": "^6.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@storybook/addon-a11y": "^8.6.14",
"@storybook/addon-actions": "^9.0.8",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/addon-links": "^8.6.14",
"@storybook/builder-webpack5": "^8.6.15",
"@storybook/preset-create-react-app": "^8.6.14",
"@storybook/react": "^8.6.14",
"@storybook/react-webpack5": "^8.6.15",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"auto": "^11.3.6",
"chromatic": "^15.1.0",
"cross-env": "^10.1.0",
"postcss": "8.x",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-scripts": "^5.0.1",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^8.6.17",
"webpack": "5"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"fuzzysort": "^3.1.0",
"mousetrap": "^1.6.5",
"react-autosuggest": "^10.1.0",
"react-modal": "^3.16.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
[
"react-app",
{
"absoluteRuntime": false
}
]
]
},
"files": [
"dist",
"examples",
"themes"
],
"jest": {
"restoreMocks": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!<rootDir>/src/examples/**",
"!<rootDir>/src/themes/**",
"!<rootDir>/src/*test*",
"!<rootDir>/src/index.*",
"!<rootDir>/src/*-options.js"
],
"coverageThreshold": {
"global": {
"statements": 95,
"branches": 85,
"functions": 100,
"lines": 95
},
"./src/command-palette.js": {
"statements": 98,
"branches": 90,
"functions": 100,
"lines": 98
},
"./src/suggestions.js": {
"statements": 85,
"branches": 80,
"functions": 100,
"lines": 90
}
}
}
}