forked from posva/event-emitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.88 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
{
"name": "@posva/event-emitter",
"version": "1.0.2",
"type": "module",
"description": "Type safe and light event emitter / pubsub class",
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Eduardo San Martin Morote",
"email": "[email protected]"
},
"license": "MIT",
"funding": "https://github.com/sponsors/posva",
"homepage": "https://github.com/posva/event-emitter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/posva/event-emitter.git"
},
"bugs": {
"url": "https://github.com/posva/event-emitter/issues"
},
"keywords": [
"event",
"emitter",
"eventemitter",
"mitt",
"pub",
"sub",
"pubsub",
"class",
"light"
],
"sideEffects": false,
"exports": {
".": {
"types": {
"import": "./dist/index.d.ts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"docs": "typedoc",
"build": "tsup",
"test": "vitest --ui --coverage --typecheck",
"prepublish": "pnpm run build",
"release": "standard-version",
"size": "size-limit"
},
"size-limit": [
{
"path": "dist/index.js",
"import": "{ EventEmitter }"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^11.1.3",
"@types/node": "^20.12.11",
"@vitest/coverage-v8": "2.0.0-beta.2",
"@vitest/ui": "2.0.0-beta.2",
"size-limit": "^11.1.3",
"standard-version": "^9.5.0",
"tsup": "^8.0.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vitest": "2.0.0-beta.2"
}
}