forked from timc1/kbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.32 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
{
"name": "kbar",
"version": "0.1.0-beta.40",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib & tsc",
"build:example": "webpack --config ./example/webpack.prod.cjs",
"dev": "webpack-dev-server --config ./example/webpack.config.cjs --hot",
"test": "jest src",
"lint": "eslint src/**/* example/src/**/* --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@reach/accordion": "^0.16.1",
"@testing-library/react": "^12.1.4",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"css-loader": "^6.2.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",
"font-loader": "^0.1.2",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"prism-react-renderer": "^1.2.1",
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0",
"react-hot-toast": "^2.1.1",
"react-router-dom": "^5.3.0",
"sass": "^1.39.2",
"sass-loader": "^12.1.0",
"style-loader": "^3.2.1",
"typescript": "^4.4.2",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.1.0"
},
"dependencies": {
"@radix-ui/react-portal": "^1.0.1",
"command-score": "^0.1.2",
"fast-equals": "^2.0.3",
"react-virtual": "^2.8.2",
"tiny-invariant": "^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 <timchang.tcc@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timc1/kbar.git"
}
}