|
1 | 1 | { |
2 | 2 | "name": "jupyter_matlab_labextension", |
3 | | - "version": "0.1.0", |
| 3 | + "version": "1.0.0", |
4 | 4 | "description": "A JupyterLab extension.", |
5 | 5 | "keywords": [ |
6 | 6 | "jupyter", |
7 | 7 | "jupyterlab", |
8 | 8 | "jupyterlab-extension" |
9 | 9 | ], |
10 | | - "license": "BSD-3-Clause", |
| 10 | + "license": "SEE LICENSE IN LICENSE.md", |
11 | 11 | "author": { |
12 | 12 | "name": "The MathWorks Inc.", |
13 | 13 | |
|
28 | 28 | "build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension", |
29 | 29 | "build:labextension": "jupyter labextension build .", |
30 | 30 | "build:labextension:dev": "jupyter labextension build --development True .", |
31 | | - "build:lib": "tsc", |
| 31 | + "build:lib": "jlpm build:lezer && tsc", |
| 32 | + "build:lezer": "cd src/lezer-matlab && npm run build", |
32 | 33 | "clean": "jlpm clean:lib", |
33 | 34 | "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
34 | 35 | "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
|
50 | 51 | "audit:fix": "npx yarn-audit-fix" |
51 | 52 | }, |
52 | 53 | "dependencies": { |
53 | | - "@jupyterlab/application": "^3.1.0", |
54 | | - "@jupyterlab/launcher-extension": "", |
55 | | - "@jupyterlab/notebook": "", |
56 | | - "@types/codemirror": "" |
| 54 | + "@codemirror/language": "^6.0.0", |
| 55 | + "@jupyterlab/application": "^4.0.0", |
| 56 | + "@jupyterlab/apputils": "^4.0.0", |
| 57 | + "@jupyterlab/codemirror": "^4.0.0", |
| 58 | + "@jupyterlab/coreutils": "^6.0.0", |
| 59 | + "@jupyterlab/docregistry": "^4.0.0", |
| 60 | + "@jupyterlab/launcher": "^4.0.0", |
| 61 | + "@jupyterlab/notebook": "^4.0.0", |
| 62 | + "@jupyterlab/ui-components": "^4.0.0", |
| 63 | + "@lumino/coreutils": "^2.0.0", |
| 64 | + "@lumino/disposable": "^2.0.0", |
| 65 | + "@rollup/plugin-node-resolve": "^9.0.0" |
57 | 66 | }, |
58 | 67 | "devDependencies": { |
59 | | - "@jupyterlab/builder": "^3.1.0", |
60 | | - "@typescript-eslint/eslint-plugin": "^5.0.0", |
61 | | - "@typescript-eslint/parser": "^5.30.7", |
62 | | - "eslint": "^8.0.1", |
| 68 | + "@jupyterlab/builder": ">=4.0.0", |
| 69 | + "@typescript-eslint/eslint-plugin": "^5.62.0", |
| 70 | + "@typescript-eslint/parser": "^5.62.0", |
| 71 | + "eslint": "^8.57.0", |
63 | 72 | "eslint-config-standard": "^17.0.0", |
64 | 73 | "eslint-config-standard-with-typescript": "^22.0.0", |
65 | 74 | "eslint-plugin-import": "^2.25.2", |
66 | 75 | "eslint-plugin-n": "^15.0.0", |
67 | 76 | "eslint-plugin-node": "^11.1.0", |
68 | 77 | "eslint-plugin-promise": "^6.0.0", |
69 | 78 | "npm-run-all": "^4.1.5", |
70 | | - "prettier": "^2.1.1", |
71 | | - "rimraf": "^3.0.2", |
| 79 | + "prettier": "^2.8.7", |
| 80 | + "rimraf": "^4.4.1", |
| 81 | + "rollup": "^2.52.2", |
72 | 82 | "semver": ">=5.7.2", |
73 | | - "typescript": "~4.1.3", |
| 83 | + "typescript": "~5.0.2", |
| 84 | + "ws": "^7.5.10", |
74 | 85 | "yarn-audit-fix": "^10.0.1", |
75 | | - "yarn-deduplicate": "^6.0.2", |
76 | | - "ws": "^7.5.10" |
| 86 | + "yarn-deduplicate": "^6.0.2" |
77 | 87 | }, |
78 | 88 | "sideEffects": [ |
79 | 89 | "style/*.css", |
|
90 | 100 | "jupyter-releaser": { |
91 | 101 | "hooks": { |
92 | 102 | "before-build-npm": [ |
93 | | - "python -m pip install jupyterlab~=3.1", |
| 103 | + "python -m pip install jupyterlab~=4", |
94 | 104 | "jlpm" |
95 | 105 | ], |
96 | 106 | "before-build-python": [ |
|
0 commit comments