microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
source/jupyterlab/package.json
50lines · modecode
| 1 | { |
| 2 | "name": "qsharp-jupyterlab", |
| 3 | "version": "0.0.0", |
| 4 | "description": "Q# extension for JupyterLab", |
| 5 | "keywords": [ |
| 6 | "jupyter", |
| 7 | "jupyterlab", |
| 8 | "jupyterlab-extension" |
| 9 | ], |
| 10 | "homepage": "https://github.com/microsoft/qsharp", |
| 11 | "bugs": { |
| 12 | "url": "https://github.com/microsoft/qsharp/issues" |
| 13 | }, |
| 14 | "license": "MIT", |
| 15 | "author": { |
| 16 | "name": "Microsoft" |
| 17 | }, |
| 18 | "files": [ |
| 19 | "lib" |
| 20 | ], |
| 21 | "main": "lib/index.js", |
| 22 | "types": "lib/index.d.ts", |
| 23 | "repository": { |
| 24 | "type": "git", |
| 25 | "url": "https://github.com/microsoft/qsharp.git" |
| 26 | }, |
| 27 | "scripts": { |
| 28 | "build": "npm run build:lib && npm run build:labextension:prod", |
| 29 | "build:dev": "npm run build:lib && npm run build:labextension:dev", |
| 30 | "build:prod": "npm run build:lib && npm run build:labextension:prod", |
| 31 | "build:lib": "node ../../node_modules/typescript/bin/tsc -p ./tsconfig.json", |
| 32 | "build:labextension:dev": "node node_modules/@jupyterlab/builder/lib/build-labextension.js --core-path ./jupyterlab-core --development .", |
| 33 | "build:labextension:prod": "node node_modules/@jupyterlab/builder/lib/build-labextension.js --core-path ./jupyterlab-core ." |
| 34 | }, |
| 35 | "devDependencies": { |
| 36 | "@jupyterlab/builder": "^4.0.0", |
| 37 | "typescript": "^5.0.2" |
| 38 | }, |
| 39 | "dependencies": { |
| 40 | "@codemirror/language": "^6.10.1", |
| 41 | "@codemirror/legacy-modes": "^6.3.3", |
| 42 | "@jupyterlab/application": "^4.0.0", |
| 43 | "@jupyterlab/codemirror": "^4.0.0", |
| 44 | "@jupyterlab/notebook": "^4.0.0" |
| 45 | }, |
| 46 | "jupyterlab": { |
| 47 | "extension": true, |
| 48 | "outputDir": "qsharp-jupyterlab/labextension" |
| 49 | } |
| 50 | } |
| 51 | |