UNPKG

1.74 kBJSONView Raw
1{
2 "name": "@jupyterlab/mainmenu",
3 "version": "4.1.2",
4 "description": "JupyterLab - Main Menu",
5 "homepage": "https://github.com/jupyterlab/jupyterlab",
6 "bugs": {
7 "url": "https://github.com/jupyterlab/jupyterlab/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jupyterlab/jupyterlab.git"
12 },
13 "license": "BSD-3-Clause",
14 "author": "Project Jupyter",
15 "sideEffects": [
16 "style/**/*.css",
17 "style/index.js"
18 ],
19 "main": "lib/index.js",
20 "types": "lib/index.d.ts",
21 "style": "style/index.css",
22 "directories": {
23 "lib": "lib/"
24 },
25 "files": [
26 "lib/*.d.ts",
27 "lib/*.js.map",
28 "lib/*.js",
29 "style/**/*.css",
30 "style/index.js",
31 "src/**/*.{ts,tsx}"
32 ],
33 "scripts": {
34 "build": "tsc -b",
35 "build:test": "tsc --build tsconfig.test.json",
36 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
37 "docs": "typedoc src",
38 "test": "jest",
39 "test:cov": "jest --collect-coverage",
40 "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
41 "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
42 "watch": "tsc -b --watch"
43 },
44 "dependencies": {
45 "@jupyterlab/apputils": "^4.2.2",
46 "@jupyterlab/translation": "^4.1.2",
47 "@jupyterlab/ui-components": "^4.1.2",
48 "@lumino/algorithm": "^2.0.1",
49 "@lumino/commands": "^2.2.0",
50 "@lumino/coreutils": "^2.1.2",
51 "@lumino/widgets": "^2.3.1"
52 },
53 "devDependencies": {
54 "@jupyterlab/testing": "^4.1.2",
55 "@types/jest": "^29.2.0",
56 "jest": "^29.2.0",
57 "rimraf": "~5.0.5",
58 "typedoc": "~0.24.7",
59 "typescript": "~5.1.6"
60 },
61 "publishConfig": {
62 "access": "public"
63 },
64 "styleModule": "style/index.js"
65}