-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.46 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
{
"name": "react-changes-listener",
"version": "1.0.4",
"type": "module",
"description": "A React utility component to listen for changes in a value.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/ChangesListener.tsx --format esm,cjs --dts --external react --sourcemap --clean",
"test": "vitest"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"jsdom": "29.0.2",
"react": "19.2.5",
"react-dom": "19.2.5",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.1.4"
},
"keywords": [
"react",
"listener",
"changes",
"component",
"utility"
],
"author": "Denis <MiskaMyasa> Zaitsev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Miskamyasa/react-changes-listener.git"
},
"bugs": {
"url": "https://github.com/Miskamyasa/react-changes-listener/issues"
},
"homepage": "https://github.com/Miskamyasa/react-changes-listener",
"dependencies": {
"vite": "8.0.8"
}
}