This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "@jupyterlab/shortcutui",
"version": "0.5.0-beta.2",
"description": "A JupyterLab extension for managing keyboard shortcuts",
"author": "Jenna Landy, Noah Stapp, and Alena Mueller",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-shortcutui/",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-shortcutui/issues"
},
"license": "BSD-3-Clause",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-shortcutui.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0-alpha.4",
"@jupyterlab/apputils": "^2.0.0-alpha.4",
"@jupyterlab/coreutils": "^4.0.0-alpha.4",
"@jupyterlab/mainmenu": "^2.0.0-alpha.4",
"@jupyterlab/settingregistry": "^2.0.0-beta.1",
"@lumino/domutils": "^1.1.6",
"@lumino/keyboard": "^1.1.5",
"@lumino/widgets": "^1.9.4",
"react": "~16.9.0",
"typestyle": "^2.0.4"
},
"devDependencies": {
"@types/react": "~16.9.11",
"@types/react-dom": "~16.9.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"tslint": "^5.20.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~3.7.3"
},
"jupyterlab": {
"extension": true
},
"resolutions": {
"@types/react": "^16.9.11"
}
}