CoolFace
Apppublic

vondp/TorchCode

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes
package.json41 linesDownload Raw Back to labextension
1{2  "name": "torchcode-labext",3  "version": "0.1.0",4  "description": "TorchCode JupyterLab Extension — Reset notebooks & Open in Colab",5  "keywords": ["jupyter", "jupyterlab", "jupyterlab-extension"],6  "license": "MIT",7  "author": "duoan",8  "files": [9    "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",10    "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"11  ],12  "main": "lib/index.js",13  "types": "lib/index.d.ts",14  "scripts": {15    "build": "jlpm build:lib && jlpm build:labextension:dev",16    "build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",17    "build:labextension": "jupyter labextension build .",18    "build:labextension:dev": "jupyter labextension build --development True .",19    "build:lib": "tsc",20    "clean": "jlpm clean:lib",21    "clean:lib": "rimraf lib tsconfig.tsbuildinfo"22  },23  "dependencies": {24    "@jupyterlab/application": "^4.0.0",25    "@jupyterlab/apputils": "^4.0.0",26    "@jupyterlab/notebook": "^4.0.0",27    "@jupyterlab/services": "^7.0.0",28    "@jupyterlab/ui-components": "^4.0.0",29    "@jupyterlab/docregistry": "^4.0.0"30  },31  "devDependencies": {32    "rimraf": "^5.0.1",33    "typescript": "~5.1.6",34    "@jupyterlab/builder": "^4.0.0"35  },36  "jupyterlab": {37    "extension": true,38    "outputDir": "torchcode_labext/labextension"39  }40}41