-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.51 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
{
"name": "vue-pubsub",
"author": "Novout",
"license": "MIT",
"version": "0.1.1",
"description": "A Pubsub Plugin (or better Event Bus) for Vue.",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "https://github.com/betterwrite/vue-pubsub"
},
"scripts": {
"build": "tsup",
"format": "npx prettier --write .",
"dev": "yarn build && vite --port 3000",
"demo": "yarn build && vite build && vite --port 5000 preview",
"version:patch": "generi log patch",
"version:minor": "generi log minor",
"version:major": "generi log major",
"prepublish": "yarn build"
},
"engines": {
"node": ">= 14"
},
"keywords": [
"vue",
"hook",
"plugin",
"pubsub",
"event-bus",
"emitter"
],
"dependencies": {
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@types/jsdom": "^16.2.15",
"@types/node": "^14.18.42",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/runtime-core": "3.2.47",
"generi": "^0.5.2",
"tsup": "^6.7.0",
"typescript": "^5.0.2",
"vite": "^4.2.1",
"vue": "^3.2.47"
}
}