-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "epubsub",
"private": false,
"version": "1.0.0",
"type": "module",
"description": "A lightweight, framework-agnostic JavaScript/TypeScript publish-subscribe library that enables efficient event-driven communication between different parts of your application.",
"author": "Emre YILMAZ",
"license": "Apache-2.0",
"files": [
"dist"
],
"main": "./dist/epubsub.cjs.js",
"module": "./dist/epubsub.es.js",
"exports": {
".": {
"import": "./dist/epubsub.es.js",
"require": "./dist/epubsub.cjs.js",
"types": "./dist/main.d.ts"
}
},
"types": "./dist/main.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run --coverage"
},
"keywords": [
"events",
"eventemitter",
"emitter",
"pubsub",
"publish-subscribe",
"react-hooks",
"react",
"typescript",
"event-driven",
"state-management"
],
"repository": {
"type": "git",
"url": "git+https://github.com/eylmz/epubsub.git"
},
"bugs": {
"url": "https://github.com/eylmz/epubsub/issues"
},
"homepage": "https://github.com/eylmz/epubsub"
}