|
1 | 1 | {
|
2 |
| - "name": "@krassowski/jupyterlab_go_to_definition", |
3 |
| - "version": "1.1.0", |
4 |
| - "description": "Jump to definition of a variable or function in JupyterLab", |
| 2 | + "name": "@krassowski/code-jumpers", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Implementation underlying the jump to definition functionality in JupyterLab-LSP", |
5 | 5 | "keywords": [
|
6 | 6 | "jupyter",
|
7 | 7 | "jupyterlab",
|
8 |
| - "jupyterlab-extension" |
| 8 | + "lsp", |
| 9 | + "language-server-protocol" |
9 | 10 | ],
|
10 |
| - "homepage": "https://github.com/krassowski/jupyterlab-go-to-definition", |
| 11 | + "homepage": "https://github.com/krassowski/jupyterlab-lsp", |
11 | 12 | "bugs": {
|
12 |
| - "url": "https://github.com/krassowski/jupyterlab-go-to-definition/issues" |
| 13 | + "url": "https://github.com/krassowski/jupyterlab-lsp/issues" |
13 | 14 | },
|
14 | 15 | "license": "BSD-3-Clause",
|
15 |
| - "author": "Michał Krassowski", |
| 16 | + "author": "JupyterLab-LSP Development Team", |
16 | 17 | "files": [
|
17 | 18 | "{lib,style,schema,src}/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,css,json,ts,tsx}"
|
18 | 19 | ],
|
19 | 20 | "main": "lib/index.js",
|
20 | 21 | "types": "lib/index.d.ts",
|
21 | 22 | "repository": {
|
22 | 23 | "type": "git",
|
23 |
| - "url": "https://github.com/krassowski/jupyterlab-go-to-definition.git" |
| 24 | + "url": "https://github.com/krassowski/jupyterlab-lsp.git" |
24 | 25 | },
|
25 | 26 | "scripts": {
|
26 | 27 | "build": "tsc -b",
|
|
29 | 30 | "lab:link": "jupyter labextension link . --no-build"
|
30 | 31 | },
|
31 | 32 | "peerDependencies": {
|
32 |
| - "@jupyterlab/application": "~2.2.0", |
33 | 33 | "@jupyterlab/apputils": "~2.2.0",
|
34 | 34 | "@jupyterlab/codeeditor": "~2.2.0",
|
35 |
| - "@jupyterlab/codemirror": "~2.2.0", |
36 | 35 | "@jupyterlab/coreutils": "~4.2.0",
|
37 | 36 | "@jupyterlab/docmanager": "~2.2.0",
|
38 | 37 | "@jupyterlab/docregistry": "~2.2.0",
|
39 | 38 | "@jupyterlab/fileeditor": "~2.2.0",
|
40 | 39 | "@jupyterlab/notebook": "~2.2.0",
|
41 |
| - "@jupyterlab/observables": "~3.2.0", |
42 |
| - "@jupyterlab/services": "~5.2.0", |
43 |
| - "@lumino/algorithm": "*", |
44 |
| - "codemirror": "*", |
45 |
| - "react": "*" |
| 40 | + "@jupyterlab/observables": "~3.2.0" |
46 | 41 | },
|
47 | 42 | "devDependencies": {
|
48 |
| - "@jupyterlab/application": "~2.2.0", |
49 | 43 | "@jupyterlab/apputils": "~2.2.0",
|
50 | 44 | "@jupyterlab/codeeditor": "~2.2.0",
|
51 |
| - "@jupyterlab/codemirror": "~2.2.0", |
52 | 45 | "@jupyterlab/coreutils": "~4.2.0",
|
53 | 46 | "@jupyterlab/docmanager": "~2.2.0",
|
54 | 47 | "@jupyterlab/docregistry": "~2.2.0",
|
55 | 48 | "@jupyterlab/fileeditor": "~2.2.0",
|
56 | 49 | "@jupyterlab/notebook": "~2.2.0",
|
57 | 50 | "@jupyterlab/observables": "~3.2.0",
|
58 |
| - "@jupyterlab/services": "~5.2.0", |
59 |
| - "@lumino/algorithm": "*", |
60 |
| - "codemirror": "*", |
61 |
| - "react": "*", |
62 | 51 | "@jupyterlab/testutils": "~2.2.0",
|
63 |
| - "@types/codemirror": "^0.0.74", |
64 |
| - "@types/chai": "^4.1.7", |
65 |
| - "@types/jest": "^23.3.11", |
66 |
| - "chai": "^4.2.0", |
67 |
| - "jest": "^26.0.0", |
68 |
| - "jest-junit": "^8.0.0", |
69 | 52 | "rimraf": "^2.6.1",
|
70 |
| - "ts-jest": "^26.4.3", |
71 | 53 | "typescript": "~4.0.2",
|
72 | 54 | "@babel/preset-env": "^7.4.3"
|
73 | 55 | },
|
74 | 56 | "jupyterlab": {
|
75 |
| - "extension": true, |
76 |
| - "schemaDir": "schema" |
| 57 | + "extension": false |
77 | 58 | }
|
78 | 59 | }
|
0 commit comments