forked from wobsoriano/v-hotkey3
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
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
{
"name": "v-hotkey3",
"version": "0.1.4",
"packageManager": "pnpm@7.18.0",
"description": "Vue 3.2.x directive for binding hotkeys to components.",
"author": "Robert Soriano <sorianorobertc@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/wobsoriano/v-hotkey3#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/v-hotkey3.git"
},
"bugs": "https://github.com/wobsoriano/v-hotkey3/issues",
"keywords": [
"vue",
"hotkey"
],
"sideEffects": false,
"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"
],
"scripts": {
"build-fast": "tsup src/index.ts --format cjs,esm",
"_build": "pnpm build-fast --dts-resolve",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"test": "vitest",
"update-deps": "taze -w && pnpm i",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"vue": ">=3.2.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.27.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/test-utils": "^2.2.6",
"bumpp": "^8.2.1",
"eslint": "^8.29.0",
"happy-dom": "^8.1.0",
"jsdom": "^20.0.3",
"taze": "^0.8.4",
"tsup": "6.0.1",
"typescript": "^4.9.4",
"vitest": "^0.24.5",
"vue": "^3.2.45"
},
"eslintConfig": {
"extends": "@antfu"
}
}