-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "@alexvcasillas/use-observer",
"version": "1.1.2",
"description": "React Intersection Observer implementation done right!",
"repository": "https://github.com/alexvcasillas/use-observer.git",
"author": "Alex Casillas",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/use-observer.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/react": "^17.0.2",
"@types/react-dom": "17.0.2",
"husky": "^3.0.9",
"react": "17.0.2",
"react-dom": "17.0.2",
"tsdx": "0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"dependencies": {}
}