Vaibhav Sagar 0d647a949f
Update jupyterlab-ihaskell for 4.x (#1426)
* [WIP] Update jupyterlab-ihaskell for 4.x

* Address feedback

* jupyterlab-ihaskell: more updates

* jupyterlab-ihaskell: don't minify

* jupyterlab-ihaskell: update

* jupyterlab-ihaskell: change mimetype

* jupyterlab-ihaskell: update

* jupyterlab-ihaskell: works with JupyterLab 4

* jupyterlab-ihaskell: update id

* jupyterlab-ihaskell: simplify

* jupyterlab-ihaskell: update
2024-04-21 19:10:08 +10:00

49 lines
1.1 KiB
JSON

{
"name": "jupyterlab-ihaskell",
"version": "0.0.14",
"description": "adds ihaskell syntax highlighting to jupyterlab",
"keywords": [
"jupyter",
"jupyterlab",
"ihaskell",
"jupyterlab-extension"
],
"homepage": "https://github.com/gibiansky/IHaskell/",
"bugs": {
"url": "https://github.com/gibiansky/IHaskell/issues"
},
"license": "BSD-3-Clause",
"author": "MMesch",
"files": [
"lib/**/*.{d.ts,js,js.map,json}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "git@github.com:gibiansky/IHaskell.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": ">=4.0.0",
"@jupyterlab/codemirror": ">=4.0.0",
"@jupyterlab/apputils": ">=4.0.0",
"@jupyterlab/notebook": ">=4.0.0"
},
"devDependencies": {
"rimraf": "^3.0.0",
"typescript": "~5.0.4",
"@types/codemirror": ">=0.0.0",
"@jupyterlab/builder": ">=4.0.0"
},
"jupyterlab": {
"extension": true,
"outputDir": "labextension",
"webpackConfig": "./webpack.config.js"
}
}