|
@@ -0,0 +1,91 @@
|
|
|
+{
|
|
|
+ "name": "@jupyterlab/builder",
|
|
|
+ "version": "3.0.0-alpha.11",
|
|
|
+ "description": "JupyterLab - Extension Builder",
|
|
|
+ "homepage": "https://github.com/jupyterlab/jupyterlab",
|
|
|
+ "bugs": {
|
|
|
+ "url": "https://github.com/jupyterlab/jupyterlab/issues"
|
|
|
+ },
|
|
|
+ "repository": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/jupyterlab/jupyterlab.git"
|
|
|
+ },
|
|
|
+ "license": "BSD-3-Clause",
|
|
|
+ "author": "Project Jupyter",
|
|
|
+ "files": [
|
|
|
+ "metadata_schema.json",
|
|
|
+ "lib/*.d.ts",
|
|
|
+ "lib/*.js.map",
|
|
|
+ "lib/*.js",
|
|
|
+ "template/package.json",
|
|
|
+ "template/tsconfig.json",
|
|
|
+ "template/src/index.ts"
|
|
|
+ ],
|
|
|
+ "main": "lib/index.js",
|
|
|
+ "types": "lib/index.d.ts",
|
|
|
+ "bin": {
|
|
|
+ "build-labextension": "./lib/build-extension.js",
|
|
|
+ "ensure-max-old-space": "./lib/ensure-max-old-space.js"
|
|
|
+ },
|
|
|
+ "directories": {
|
|
|
+ "lib": "lib/"
|
|
|
+ },
|
|
|
+ "scripts": {
|
|
|
+ "build": "tsc",
|
|
|
+ "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
|
|
|
+ "prepublishOnly": "npm run build",
|
|
|
+ "watch": "tsc -w --listEmittedFiles"
|
|
|
+ },
|
|
|
+ "dependencies": {
|
|
|
+ "@babel/core": "^7.10.2",
|
|
|
+ "@babel/preset-env": "^7.10.2",
|
|
|
+ "@jupyterlab/buildutils": "^3.0.0-alpha.11",
|
|
|
+ "@lumino/algorithm": "^1.2.3",
|
|
|
+ "@lumino/application": "^1.8.4",
|
|
|
+ "@lumino/commands": "^1.10.1",
|
|
|
+ "@lumino/coreutils": "^1.4.3",
|
|
|
+ "@lumino/disposable": "^1.3.5",
|
|
|
+ "@lumino/domutils": "^1.1.7",
|
|
|
+ "@lumino/dragdrop": "^1.5.1",
|
|
|
+ "@lumino/messaging": "^1.3.3",
|
|
|
+ "@lumino/properties": "^1.1.6",
|
|
|
+ "@lumino/signaling": "^1.3.5",
|
|
|
+ "@lumino/virtualdom": "^1.6.1",
|
|
|
+ "@lumino/widgets": "^1.11.1",
|
|
|
+ "ajv": "^6.12.3",
|
|
|
+ "babel-loader": "^8.0.6",
|
|
|
+ "child_process": "~1.0.2",
|
|
|
+ "commander": "~4.0.1",
|
|
|
+ "css-loader": "~3.2.0",
|
|
|
+ "duplicate-package-checker-webpack-plugin": "^3.0.0",
|
|
|
+ "file-loader": "~5.0.2",
|
|
|
+ "fs": "~0.0.1-security",
|
|
|
+ "fs-extra": "^8.1.0",
|
|
|
+ "glob": "~7.1.6",
|
|
|
+ "mini-css-extract-plugin": "~0.10.0",
|
|
|
+ "path": "~0.12.7",
|
|
|
+ "raw-loader": "~4.0.0",
|
|
|
+ "style-loader": "~1.0.1",
|
|
|
+ "svg-url-loader": "~3.0.3",
|
|
|
+ "terser-webpack-plugin": "^2.3.0",
|
|
|
+ "to-string-loader": "^1.1.6",
|
|
|
+ "url-loader": "~3.0.0",
|
|
|
+ "webpack": "~5.0.0-beta.26",
|
|
|
+ "webpack-cli": "^3.3.10",
|
|
|
+ "webpack-merge": "^5.1.2",
|
|
|
+ "which": "^2.0.2",
|
|
|
+ "worker-loader": "^2.0.0"
|
|
|
+ },
|
|
|
+ "devDependencies": {
|
|
|
+ "@types/fs-extra": "^8.0.1",
|
|
|
+ "@types/glob": "^7.1.1",
|
|
|
+ "@types/node": "^12.12.17",
|
|
|
+ "@types/webpack": "^4.41.0",
|
|
|
+ "@types/which": "^1.3.2",
|
|
|
+ "rimraf": "~3.0.0",
|
|
|
+ "typescript": "~3.9.2"
|
|
|
+ },
|
|
|
+ "publishConfig": {
|
|
|
+ "access": "public"
|
|
|
+ }
|
|
|
+}
|