-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "use-wasd",
"version": "2.0.6",
"license": "MIT",
"description": "Easy and agnostic react hook to handle keys and key-combinations on your keyboard.",
"keywords": [
"react",
"hook",
"keyboard",
"track",
"keys",
"shortcuts",
"wasd",
"combos",
"combination",
"gaming"
],
"files": [
"dist"
],
"author": "doemser",
"main": "dist/use-wasd.js",
"source": "src/use-wasd.ts",
"types": "dist/types.d.ts",
"module": "dist/esm/use-wasd.js",
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"parcel": "^2.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"typescript": "4.7"
},
"repository": {
"type": "git",
"url": "git+https://github.com:doemser/use-wasd.git"
},
"homepage": "http://doemser.de",
"scripts": {
"test": "react-scripts test --env=jsdom",
"build": "parcel build",
"dev": "parcel watch",
"release": "parcel build && npm publish"
}
}