-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "@twocatmoon/react-use-konami-code",
"version": "0.1.1",
"private": false,
"description": "Call a function when a sequence of key presses is detected.",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"types": "./dist/types/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc --project tsconfig.build.json && npm run docs:build",
"docs:dev": "npm run docs:build & npx http-server docs",
"docs:build": "npx typedoc src/lib/index.ts --customCss ./docStyles.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twocatmoon/react-use-konami-code.git"
},
"keywords": [
"react",
"hook",
"konami code",
"cheat code",
"easter egg"
],
"author": "Two-Cat Moon Digital Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/twocatmoon/react-use-konami-code/issues"
},
"homepage": "https://github.com/twocatmoon/react-use-konami-code#readme",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@vitejs/plugin-react": "^1.0.7",
"typedoc": "^0.22.13",
"typescript": "^4.5.4",
"vite": "^2.8.0"
}
}