microsoft/qdk

Public

mirrored fromhttps://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3f3bde67ddc1de8f1d7349f3f3ad53c62ac9fce6

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

jupyterlab/package.json

49lines · modepreview

{
  "name": "qsharp-jupyterlab",
  "version": "0.0.0",
  "description": "Q# extension for JupyterLab",
  "keywords": [
    "jupyter",
    "jupyterlab",
    "jupyterlab-extension"
  ],
  "homepage": "https://github.com/microsoft/qsharp",
  "bugs": {
    "url": "https://github.com/microsoft/qsharp/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Microsoft"
  },
  "files": [
    "lib"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/qsharp.git"
  },
  "scripts": {
    "build": "jlpm run build:lib && jlpm run build:labextension:prod",
    "build:dev": "jlpm run build:lib && jlpm run build:labextension:dev",
    "build:lib": "node ../node_modules/typescript/bin/tsc -p ./tsconfig.json",
    "build:labextension:dev": "jupyter labextension build --development True .",
    "build:labextension:prod": "jupyter labextension build ."
  },
  "devDependencies": {
    "@jupyterlab/builder": "^4.0.0",
    "typescript": "^5.0.2"
  },
  "dependencies": {
    "@codemirror/language": "^6.10.1",
    "@codemirror/legacy-modes": "^6.3.3",
    "@jupyterlab/application": "^4.0.0",
    "@jupyterlab/codemirror": "^4.0.0",
    "@jupyterlab/notebook": "^4.0.0"
  },
  "jupyterlab": {
    "extension": true,
    "outputDir": "qsharp-jupyterlab/labextension"
  }
}