-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.18 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
{
"name": "react-searchbox-like-youtube",
"version": "1.0.0",
"author": "Alptuğ İdin",
"type": "module",
"description": "Customizable Searchbox with autocomplete and highlighted results for React applications.",
"keywords": [
"react",
"searchbox",
"autocomplete",
"youtube searchbox",
"youtube"
],
"main": "./index.js",
"module": "./index.esm.js",
"types": "./index.d.ts",
"files": [
"./index.css",
"./index.d.ts",
"./index.esm.js",
"./index.js",
"./package.json"
],
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"dist": "npx tsup && npm run dist:css && npm run dist:copy",
"dist:css": "postcss src/index.css -o dist/index.css",
"dist:copy": "copy package.json dist",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/css-mediaquery": "^0.1.1",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@vitejs/plugin-react": "^2.2.0",
"@vitest/coverage-c8": "^0.25.3",
"autoprefixer": "^10.4.13",
"css-mediaquery": "^0.1.2",
"eslint": "^8.27.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"jest": "^29.3.1",
"jest-mock": "^29.3.1",
"jsdom": "^20.0.3",
"postcss": "^8.4.19",
"postcss-cli": "^10.0.0",
"postcss-nesting": "^10.2.0",
"postcss-scss": "^4.0.5",
"react-test-renderer": "^18.2.0",
"sass": "^1.56.1",
"tailwindcss": "^3.2.4",
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"vite": "^3.2.3",
"vitest": "^0.25.2"
}
}