-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
113 lines (113 loc) · 2.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vue-global-events",
"type": "module",
"packageManager": "pnpm@8.6.5",
"version": "3.0.1",
"description": "Register global events using vue template shortcuts",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"unpkg": "./dist/index.js",
"jsdelivr": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"scripts": {
"build": "unbuild",
"dev": "vite",
"release": "node scripts/release.mjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"lint": "prettier -c \"{src,scripts}/**/*.[jtm]s?(x)\" \"*.[mt]s\"",
"lint:fix": "pnpm run lint --write",
"test:types": "tsc --noEmit",
"test:unit": "vitest --coverage",
"test": "pnpm run test:types && pnpm run lint && pnpm run test:unit run && pnpm run build",
"prepare": "simple-git-hooks"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"vue",
"events",
"global",
"window",
"document",
"shortcuts",
"anywhere",
"listeners"
],
"author": {
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
"contributors": [
{
"name": "Eduardo San Martin Morote",
"email": "posva13@gmail.com"
},
{
"name": "Damian Dulisz",
"email": "damian.dulisz@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"@posva/prompts": "^2.4.4",
"@types/lodash-es": "^4.17.7",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^0.32.2",
"@vue/compiler-sfc": "^3.3.4",
"@vue/test-utils": "^2.4.0",
"@vueuse/core": "^10.2.0",
"chalk": "^5.2.0",
"conventional-changelog-cli": "^2.2.2",
"execa": "^7.1.1",
"happy-dom": "^9.20.3",
"lint-staged": "^13.2.3",
"lodash-es": "^4.17.21",
"minimist": "^1.2.8",
"p-series": "^3.0.0",
"prettier": "^2.8.8",
"semver": "^7.5.3",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.1.5",
"unbuild": "^1.2.1",
"vite": "^4.3.9",
"vitest": "^0.32.2",
"vue": "^3.3.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "node scripts/verifyCommit.mjs"
},
"lint-staged": {
"*.{js,mjs,json,cjs}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"peerDependencies": {
"vue": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shentao/vue-global-events.git"
},
"bugs": {
"url": "https://github.com/shentao/vue-global-events/issues"
},
"homepage": "https://github.com/shentao/vue-global-events#readme",
"dependencies": {
"pkg-types": "^1.0.3"
}
}