-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
63
64
65
66
67
68
69
70
{
"name": "@keybindy/core",
"version": "1.0.2",
"description": "A lightweight and framework-agnostic keyboard shortcut manager for web apps. Define, register, and handle keybindings with ease.",
"author": {
"name": "PRASSamin",
"url": "https://github.com/prasssamin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keybindy/core.git"
},
"homepage": "https://github.com/keybindy/core",
"bugs": {
"url": "https://github.com/keybindy/core/issues"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.map",
"package.json",
"LICENSE.md",
"README.md"
],
"keywords": [
"keyboard",
"shortcut",
"hotkeys",
"keybind",
"keybinding",
"shortcut-manager",
"typescript",
"web",
"shortcut-engine",
"framework-agnostic"
],
"scripts": {
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"publish": "npm publish --access public",
"prebuild": "rm -rf dist",
"build": "rollup -c",
"dev": "rollup -c -w"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/bun": "latest",
"prettier": "^3.5.3",
"rollup-plugin-dts": "^6.2.1",
"rollup-plugin-generate-package-json": "^3.2.0",
"tslib": "^2.8.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}