-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 843 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 843 Bytes
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
{
"name": "@systems-modeling/jupyterlab-sysml",
"version": "0.53.0-SNAPSHOT",
"description": "A JupyterLab extension for system modeling using SysML",
"repository": "github:Systems-Modeling/SysML-v2-Pilot-Implementation",
"author": "SysML v2 Submission Team",
"license": "LGPL-3.0-or-later",
"main": "build/plugin.js",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"dependencies": {
"@jupyterlab/application": "4.x"
},
"devDependencies": {
"@codemirror/legacy-modes": "^6.3.2",
"@jupyterlab/codemirror": ">=4.0",
"@types/json-schema": "*",
"typescript": "~5.8.3"
},
"files": [
"build/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}"
],
"jupyterlab": {
"extension": true
},
"scripts": {
"build": "tsc",
"watch": "tsc -w"
}
}