-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "@ramstack/vue-hotkey",
"description": "A lightweight package simplifies the handling of keyboard shortcuts within Vue applications. No external dependencies",
"version": "1.2.3",
"type": "module",
"author": "rameel <rameel-b@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rameel/ramstack.vue-hotkey.js.git"
},
"exports": {
".": {
"import": {
"types": "./dist/types/vue-hotkey.d.ts",
"default": "./dist/vue-hotkey.esm.js"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"test": "playwright test",
"size-report": "node scripts/compare-package-sizes.js"
},
"keywords": [
"hotkey",
"shortkey",
"shortcut"
],
"peerDependencies": {
"vue": "^3.4.0"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@ramstack/hotkey": "^1.2.1",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"glob": "^13.0.6",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"rollup-plugin-bundle-size": "^1.0.3",
"terser": "^5.46.1",
"tslib": "^2.8.1",
"vue": "^3.4.0"
}
}