-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.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
{
"name": "@looqey/eventtide",
"version": "0.2.3",
"description": "An type-save event bus implementation with exception suppressing.",
"main": "./build/index.cjs.js",
"module": "./build/index.esm.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": "./build/index.esm.js",
"require": "./build/index.cjs.js",
"types": "./build/index.d.ts"
}
},
"scripts": {
"build": "rollup --config",
"test": "jest"
},
"keywords": [
"events",
"event",
"eventbus",
"bus",
"pubsub",
"emitter",
"listener",
"subscribe",
"dispatcher",
"eventDispatcher",
"pub/sub",
"publish"
],
"author": "Looqey <smirnar@mail.ru>",
"homepage": "https://github.com/looqa/eventtide",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/looqa/eventtide.git"
},
"bugs": {
"url": "https://github.com/looqa/eventtide/issues"
},
"contributors": [
{
"name": "Looqey",
"email": "smirnar@mail.ru",
"url": "https://github.com/looqa"
}
],
"files": [
"build"
],
"type": "module",
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^5.0.0",
"tslib": "^2.8.1",
"typescript": "^5.3.0"
},
"dependencies": {
"ts-jest": "^29.2.5"
}
}