microsoft/qdk

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
iadavis/pytyck

Branches

Tags

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

Clone

HTTPS

Download ZIP

jupyterlab/package.json

49lines · 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": "jlpm run build:lib && jlpm run build:labextension:prod",
29 "build:dev": "jlpm run build:lib && jlpm run build:labextension:dev",
30 "build:lib": "node ../node_modules/typescript/bin/tsc -p ./tsconfig.json",
31 "build:labextension:dev": "jupyter labextension build --development True .",
32 "build:labextension:prod": "jupyter labextension build ."
33 },
34 "devDependencies": {
35 "@jupyterlab/builder": "^4.0.0",
36 "typescript": "^5.0.2"
37 },
38 "dependencies": {
39 "@codemirror/language": "^6.10.1",
40 "@codemirror/legacy-modes": "^6.3.3",
41 "@jupyterlab/application": "^4.0.0",
42 "@jupyterlab/codemirror": "^4.0.0",
43 "@jupyterlab/notebook": "^4.0.0"
44 },
45 "jupyterlab": {
46 "extension": true,
47 "outputDir": "qsharp-jupyterlab/labextension"
48 }
49}
50