-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.31 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "react-accessible-menu",
"version": "1.0.1",
"description": "Accessible keyboard-friendly interactive list/menu component",
"keywords": [
"react",
"library",
"ui",
"component",
"tiny",
"list",
"menu",
"menuitem",
"keyboard",
"hotkey",
"hotkeys",
"interactive",
"accessible",
"a11y",
"typed",
"typings"
],
"sideEffects": false,
"author": "Lukas Bach <[email protected]>",
"homepage": "https://github.com/lukasbach/react-accessible-menu",
"license": "MIT",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/esm/index.d.ts",
"typings": "lib/esm/index.d.ts",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"default": "./lib/esm/index.js"
}
},
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukasbach/react-accessible-menu.git"
},
"bugs": {
"url": "https://github.com/lukasbach/react-accessible-menu/issues"
},
"scripts": {
"prepack": "yarn build",
"prebuild": "rimraf lib",
"build": "run-p \"build:*\"",
"build:cjs": "tsc -m commonjs --outDir lib/cjs",
"build:esm": "tsc -m es2015 --outDir lib/esm",
"build:esnext": "tsc -m esnext --outDir lib/esnext",
"build:bundle": "webpack",
"build:storybook": "build-storybook",
"build:docs": "typedoc --out docs src/index.ts",
"storybook": "start-storybook -p 6006"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@lukasbach/tsconfig": "^0.1.0",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/react": "^6.3.8",
"@types/react-virtualized": "^9.21.13",
"babel-loader": "^8.2.2",
"loader-utils": "^2.0.0",
"npm-run-all": "^4.1.5",
"react": "^17.0.1",
"react-dom": "^17.0.2",
"react-virtualized": "^9.22.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"typedoc": "^0.22.5",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
},
"peerDependencies": {
"react": ">=16.8.6"
},
"dependencies": {
"@types/uuid": "^8.3.1",
"uuid": "^8.3.2"
}
}