-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 2.84 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "use-custom-event",
"version": "3.0.0",
"description": "Typed custom event emitters with Standard Schema validation — framework-agnostic core with optional React bindings",
"keywords": [
"arktype",
"broadcast-channel",
"custom-event",
"effect-schema",
"event",
"event-emitter",
"hooks",
"react",
"standard-schema",
"valibot",
"zod"
],
"homepage": "https://github.com/drenther/use-custom-event#readme",
"license": "MIT",
"author": {
"name": "Soumyajit Pathak"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/drenther/use-custom-event.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js",
"require": "./dist/react.cjs"
},
"./broadcast": {
"types": "./dist/broadcast.d.ts",
"import": "./dist/broadcast.js",
"require": "./dist/broadcast.cjs"
},
"./broadcast/react": {
"types": "./dist/broadcast/react.d.ts",
"import": "./dist/broadcast/react.js",
"require": "./dist/broadcast/react.cjs"
},
"./package.json": {
"default": "./package.json"
}
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm run build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@standard-schema/spec": "1.1.0",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.1.5",
"happy-dom": "20.9.0",
"husky": "9.1.7",
"oxfmt": "0.47.0",
"oxlint": "1.62.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"tsdown": "0.21.10",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"engines": {
"node": ">=24.15.0"
},
"packageManager": "pnpm@11.0.9+sha512.34ce82e6780233cf9cad8685029a8f81d2e06196c5a9bad98879f7424940c6817c4e4524fb7d38b8553ceed48b9758b8ebaf1abd3600c232c4c8cf7366086f38"
}