UNPKG

@jupyteach/jupyterlite-contents

Version:
107 lines 3.31 kB
{ "name": "@jupyteach/jupyterlite-contents", "version": "0.1.7", "description": "A JupyterLite server extension.", "keywords": [ "jupyter", "jupyterlab", "jupyterlite", "jupyterlite-extension" ], "homepage": "https://github.com/sglyon/jupyteach-jupyterlite-contents", "bugs": { "url": "https://github.com/sglyon/jupyteach-jupyterlite-contents/issues" }, "license": "BSD-3-Clause", "author": { "name": "Spencer Lyon", "email": "spencerlyon2@gmail.com" }, "files": [ "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" ], "main": "lib/index.js", "types": "lib/index.d.ts", "repository": { "type": "git", "url": "https://github.com/sglyon/jupyteach-jupyterlite-contents.git" }, "scripts": { "build": "jlpm build:lib && jlpm build:labextension:dev", "build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension", "build:labextension": "jupyter labextension build .", "build:labextension:dev": "jupyter labextension build --development True .", "build:lib": "tsc", "clean": "jlpm clean:lib", "clean:lib": "rimraf lib tsconfig.tsbuildinfo", "clean:labextension": "rimraf jupyteach_jupyterlite_contents/labextension", "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", "eslint": "jlpm eslint:check --fix", "eslint:check": "eslint . --cache --ext .ts,.tsx", "install:extension": "jlpm build", "lint": "jlpm prettier && jlpm eslint", "lint:check": "jlpm prettier:check && jlpm eslint:check", "prettier": "jlpm prettier:base --write --list-different", "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", "prettier:check": "jlpm prettier:base --check", "watch": "run-p watch:src watch:labextension", "watch:src": "tsc -w", "watch:labextension": "jupyter labextension watch ." }, "dependencies": { "@jupyterlab/coreutils": "~5.5.1", "@jupyterlab/services": "~6.5.1", "@jupyterlite/contents": "^0.1.0-beta.16", "@jupyterlite/localforage": "^0.1.0-beta.16", "@jupyterlite/server": "^0.1.0-beta.16" }, "devDependencies": { "@babel/preset-env": "^7.0.0", "@jupyterlab/builder": "^3.1.0", "@typescript-eslint/eslint-plugin": "^4.8.1", "@typescript-eslint/parser": "^4.8.1", "eslint": "^7.14.0", "eslint-config-prettier": "^6.15.0", "eslint-plugin-prettier": "^3.1.4", "npm-run-all": "^4.1.5", "prettier": "^2.1.1", "rimraf": "^3.0.2", "typescript": "~4.1.3" }, "sideEffects": [ "style/*.css", "style/index.js" ], "styleModule": "style/index.js", "publishConfig": { "access": "public" }, "jupyterlab": { "extension": true, "outputDir": "jupyteach_jupyterlite_contents/labextension", "sharedPackages": { "@jupyterlite/contents": { "bundled": false, "singleton": true } } }, "jupyterlite": { "liteExtension": true }, "jupyter-releaser": { "skip": [ "check-links" ], "hooks": { "before-build-npm": [ "python -m pip install jupyterlab~=3.1", "jlpm" ], "before-build-python": [ "jlpm clean:all" ] } } }