-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.32 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
{
"name": "@peter.naydenov/shortcuts",
"description": "Context control of shortcuts based on keyboard and mouse events",
"version": "3.1.3",
"license": "MIT",
"author": "Peter Naydenov",
"main": "./dist/shortcuts.umd.js",
"type": "module",
"exports": {
".": {
"import": "./dist/shortcuts.esm.mjs",
"require": "./dist/shortcuts.cjs",
"default": "./dist/shortcuts.umd.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*",
"./src/*": "./src/*"
},
"scripts": {
"dev": "vite",
"build": "rollup -c",
"test": "vitest --workspace=vitest.workspace.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PeterNaydenov/shortcuts"
},
"dependencies": {
"@peter.naydenov/notice": "^2.4.0"
},
"devDependencies": {
"@peter.naydenov/visual-controller-for-react": "^3.0.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.0.5",
"ask-for-promise": "^3.0.1",
"chai": "^5.1.2",
"mocha": "^11.1.0",
"playwright": "^1.50.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"vite": "^6.1.0 "
},
"keywords": [
"shortcut",
"key",
"keyboard",
"mouse",
"click"
]
}