mirror of
https://github.com/IHaskell/IHaskell.git
synced 2025-04-14 18:36:08 +00:00

* [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
49 lines
1.1 KiB
JSON
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"
|
|
}
|
|
}
|