-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "@ramstack/hotkey",
"version": "1.1.1",
"description": "A lightweight library for handling hotkeys. No external dependencies.",
"type": "module",
"author": "rameel <rameel-b@hotmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rameel/ramstack.hotkey.js.git"
},
"exports": {
".": {
"import": {
"types": "./dist/types/hotkey.d.ts",
"default": "./dist/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"
],
"devDependencies": {
"@playwright/test": "^1.58.2",
"@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.59.0",
"rollup-plugin-bundle-size": "^1.0.3",
"strip-comments": "^2.0.1",
"terser": "^5.46.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}