-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
49 lines (49 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"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"
}
}