forked from timc1/kbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "kbar",
"version": "0.1.0-beta.45",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib & tsc",
"test": "jest src",
"test:watch": "jest src --watch",
"lint": "eslint src/**/* --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.64",
"@types/react-dom": "^17.0.20",
"@types/react-router-dom": "^5.3.3",
"@types/use-sync-external-store": "^0.0.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"esbuild": "^0.13.10",
"esbuild-jest": "^0.5.0",
"esbuild-loader": "^2.15.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"typescript": "^4.4.2"
},
"dependencies": {
"@radix-ui/react-portal": "^1.0.1",
"fast-equals": "^2.0.3",
"fuse.js": "^6.6.2",
"react-virtual": "^2.8.2",
"tiny-invariant": "^1.2.0",
"use-sync-external-store": "^1.2.0"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"keywords": [
"command bar",
"search"
],
"author": "Tim Chang <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timc1/kbar.git"
}
}