-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "react-ctrl-f",
"version": "0.0.4",
"description": "Ctrl + f function realized by react",
"license": "MIT",
"title": "React Ctrl F",
"repository": {
"type": "git",
"url": "https://github.com/dbwcooper/react-ctrl-f.git"
},
"author": {
"name": "dbwcooper",
"email": "[email protected]",
"url": "https://github.com/dbwcooper"
},
"files": [
"lib"
],
"homepage": "https://react-ctrl-f.vercel.app",
"main": "lib/index.js",
"module": "lib/esm/index.js",
"keywords": [
"React",
"ctrl f",
"web",
"search",
"match text",
"scrollToView"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"build:tsup": "tsup src/components/index.ts "
},
"dependencies": {
"react": "^17.0.0",
"react-ctrl-f": "^0.0.3",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@types/node": "^16.7.13",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@vitejs/plugin-react-refresh": "^1.1.0",
"tsup": "^4.14.0",
"typescript": "^4.1.2",
"vite": "^2.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}