-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 771 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 771 Bytes
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
{
"name": "@zqbx/event-bus",
"version": "0.0.1",
"description": "全局事件总线,主要用于开发过程中的模块通信",
"type": "module",
"module": "main.js",
"homepage": "https://github.com/zenggpzqbx/EventBus",
"repository": {
"type": "git",
"url": "https://github.com/zenggpzqbx/EventBus.git"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c rollup.config.es.js"
},
"keywords": [],
"author": "zenggpzqbx",
"license": "MIT",
"devDependencies": {
"rollup": "^4.24.0"
}
}