-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.47 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "use-listen-on-animation-frame",
"version": "2.4.0",
"description": "Listen to any function at extreme frequency",
"author": "Yaroslav Kasperovych <[email protected]>",
"license": "MIT",
"private": false,
"homepage": "https://artelydev.github.io/use-listen-on-animation-frame/",
"repository": {
"type": "git",
"url": "https://github.com/artelydev/use-listen-on-animation-frame"
},
"bugs": {
"url": "https://github.com/artelydev/use-listen-on-animation-frame/issues"
},
"keywords": [
"useanimationframe",
"track function on every animation frame",
"interval listen function",
"use animation frame",
"use animationframe",
"useAnimationFrame",
"useanimationframe"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"files": [
"dist/*",
"README.md",
"LICENSE",
"CHANGELOG*",
"package.json"
],
"scripts": {
"test": "jest --runInBand",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "npm run build -- --watch src",
"lint": "eslint .",
"commit": "git-cz",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"peerDependencies": {
"react": "16.8.0 - 18",
"react-dom": "16.8.0 - 18"
},
"devDependencies": {
"@commitlint/config-conventional": "17.3.0",
"@commitlint/prompt": "17.3.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.6",
"@semantic-release/npm": "9.0.1",
"@semantic-release/release-notes-generator": "10.0.3",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.3",
"@types/react": "18.0.25",
"@types/uuid": "8.3.4",
"commitizen": "4.2.5",
"eslint": "8.28.0",
"eslint-config-airbnb-typescript-prettier": "5.0.0",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"prettier": "2.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"semantic-release": "19.0.5",
"ts-jest": "29.0.3",
"tsup": "6.3.0",
"typescript": "4.9.3"
},
"dependencies": {
"uuid": "9.0.0"
}
}