-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "use-spotlight",
"version": "1.1.0",
"description": "A react hook that generates an animated 'spotlight' follows the active target.",
"keywords": [
"react",
"hooks",
"spotlight",
"highlight",
"active",
"target"
],
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.es.js",
"main": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"scripts": {
"dev": "vite",
"test:open": "cypress open",
"test": "cypress run --component",
"build": "vite build",
"prettier": "prettier --check .",
"prepare": "husky install && cypress install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@9am/tsconfig": "^1.0.0",
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@types/lodash.pick": "^4.4.8",
"@types/lodash.throttle": "^4.1.9",
"@types/react": "^18.2.35",
"@vitejs/plugin-react": "^4.1.1",
"cypress": "^13.4.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"lodash.pick": "^4.4.0",
"prettier": "^2.8.8",
"random-words": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.6.3"
},
"dependencies": {
"lodash.throttle": "^4.1.1"
},
"peerDependencies": {
"react": ">=16.9.0"
},
"author": {
"name": "9am",
"email": "tech.9am@gmail.com",
"url": "https://9am.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/9am/use-spotlight"
},
"homepage": "https://github.com/9am/use-spotlight#readme",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT"
}