-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 991 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
41
42
43
44
{
"name": "proper-event",
"version": "0.9.2",
"description": "Given an event type, automatically get the correct event class (click -> MouseEvent)",
"keywords": [
"browser",
"events",
"MouseEvent",
"KeyboardEvent",
"CustomEvent"
],
"repository": "fregante/proper-event",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (https://fregante.com)",
"type": "module",
"exports": "./distribution/index.js",
"types": "./distribution/index.d.ts",
"files": [
"distribution/index.js",
"distribution/index.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "xo && tsc --noEmit && vitest run --typecheck",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser"
]
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"happy-dom": "^14.12.3",
"typescript": "^5.5.2",
"vitest": "^2.0.5",
"xo": "^0.58.0"
},
"engines": {
"node": ">=20"
}
}