Initial proof-of-concept.
parents
Showing
.gitignore
0 → 100644
README.md
0 → 100644
package-lock.json
0 → 100644
package.json
0 → 100644
{ | |||
"name": "finesse-syntax-jupyterlab", | |||
"version": "0.1.0", | |||
"description": "Syntax highlighting for kat script within jupyterlab.", | |||
"keywords": [ | |||
"jupyter", | |||
"jupyterlab", | |||
"jupyterlab-extension" | |||
], | |||
"homepage": "https://github.com/my_name/myextension", | |||
"bugs": { | |||
"url": "https://github.com/my_name/myextension/issues" | |||
}, | |||
"license": "BSD-3-Clause", | |||
"author": "Phil Jones", | |||
"files": [ | |||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | |||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | |||
], | |||
"main": "lib/index.js", | |||
"types": "lib/index.d.ts", | |||
"style": "style/index.css", | |||
"repository": { | |||
"type": "git", | |||
"url": "https://github.com/my_name/myextension.git" | |||
}, | |||
"scripts": { | |||
"build": "tsc", | |||
"clean": "rimraf lib tsconfig.tsbuildinfo", | |||
"prepare": "jlpm run clean && jlpm run build", | |||
"watch": "tsc -w" | |||
}, | |||
"dependencies": { | |||
"@jupyterlab/application": "^1.2.1", | |||
"@jupyterlab/apputils": "^1.2.1", | |||
"@jupyterlab/docregistry": "^1.2.1", | |||
"@jupyterlab/notebook": "^1.2.2", | |||
"@phosphor/disposable": "^1.3.1", | |||
"@phosphor/widgets": "^1.9.3", | |||
"@types/codemirror": "0.0.82", | |||
"codemirror": "5.47.0" | |||
}, | |||
"devDependencies": { | |||
"rimraf": "^2.6.1", | |||
"typescript": "~3.5.2" | |||
}, | |||
"sideEffects": [ | |||
"style/*.css" | |||
], | |||
"jupyterlab": { | |||
"extension": true | |||
} | |||
} |
src/codemirror-finesse.ts
0 → 100644
src/index.ts
0 → 100644
style/index.css
0 → 100644
tsconfig.json
0 → 100644
Please
register
or
sign in
to comment