-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 942 Bytes
/
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
{
"name": "use-typing-headlines",
"version": "0.9.1",
"description": "React hook designed to display animated headlines",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint . --ext .ts"
},
"keywords": [
"react-hook",
"react",
"text",
"animation"
],
"author": "Sam Becker ([email protected])",
"license": "MIT",
"homepage": "https://github.com/sambecker/use-typing-headlines#readme",
"repository": {
"type": "git",
"url": "https://github.com/sambecker/use-typing-headlines.git"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"dependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@types/node": "^17.0.7",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"eslint": "^8.6.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0"
}
}