|
| 1 | +{ |
| 2 | + "name": "jupyterlab-code-snippets", |
| 3 | + "version": "1.0.4", |
| 4 | + "description": "EXPERIMENTAL: Save, reuse, and share code snippets using JupyterLab Code Snippets", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git", |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git/issues" |
| 13 | + }, |
| 14 | + "license": "BSD-3-Clause", |
| 15 | + "author": "Jay Ahn, Kiran Pinnipati", |
| 16 | + "files": [ |
| 17 | + "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
| 18 | + "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}", |
| 19 | + "schema/*.json", |
| 20 | + "style/index.js" |
| 21 | + ], |
| 22 | + "main": "lib/index.js", |
| 23 | + "types": "lib/index.d.ts", |
| 24 | + "style": "style/index.css", |
| 25 | + "repository": { |
| 26 | + "type": "git", |
| 27 | + "url": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git.git" |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
| 31 | + "build:all": "jlpm run build:labextension", |
| 32 | + "build:labextension": "jupyter labextension build .", |
| 33 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 34 | + "build:lib": "tsc", |
| 35 | + "build:prod": "jlpm run build:lib && jlpm run build:labextension", |
| 36 | + "clean": "jlpm run clean:lib", |
| 37 | + "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
| 38 | + "clean:labextension": "rimraf code_snippet/labextension", |
| 39 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 40 | + "eslint": "eslint . --ext .ts,.tsx --fix", |
| 41 | + "eslint:check": "eslint . --ext .ts,.tsx", |
| 42 | + "format": "prettier \"src/**/*.{ts, tsx}\" --check", |
| 43 | + "install:extension": "jupyter labextension develop --overwrite .", |
| 44 | + "prepare": "jlpm run clean && jlpm run build:prod", |
| 45 | + "watch": "run-p watch:src watch:labextension", |
| 46 | + "watch:labextension": "jupyter labextension watch .", |
| 47 | + "watch:src": "tsc -w" |
| 48 | + }, |
| 49 | + "dependencies": { |
| 50 | + "@jupyterlab/application": "^3.0.3", |
| 51 | + "@jupyterlab/apputils": "^3.0.2", |
| 52 | + "@jupyterlab/cells": "^3.0.3", |
| 53 | + "@jupyterlab/celltags": "^3.0.3", |
| 54 | + "@jupyterlab/docmanager": "^3.0.3", |
| 55 | + "@jupyterlab/docregistry": "^3.0.3", |
| 56 | + "@jupyterlab/fileeditor": "^3.0.3", |
| 57 | + "@jupyterlab/nbconvert-css": "^3.0.3", |
| 58 | + "@jupyterlab/nbformat": "^3.0.1", |
| 59 | + "@jupyterlab/notebook": "^3.0.3", |
| 60 | + "@jupyterlab/rendermime": "^3.0.3", |
| 61 | + "@jupyterlab/services": "^6.0.2", |
| 62 | + "@lumino/algorithm": "^1.3.3", |
| 63 | + "@lumino/coreutils": "^1.5.3", |
| 64 | + "@lumino/dragdrop": "^1.7.1", |
| 65 | + "@lumino/messaging": "^1.4.3", |
| 66 | + "@lumino/properties": "^1.2.3", |
| 67 | + "@lumino/signaling": "^1.4.3" |
| 68 | + }, |
| 69 | + "devDependencies": { |
| 70 | + "@jupyterlab/builder": "^3.0.0-rc.13", |
| 71 | + "@typescript-eslint/eslint-plugin": "^2.27.0", |
| 72 | + "@typescript-eslint/parser": "^2.27.0", |
| 73 | + "eslint": "^7.5.0", |
| 74 | + "eslint-config-prettier": "^6.10.1", |
| 75 | + "eslint-plugin-prettier": "^3.1.2", |
| 76 | + "eslint-plugin-react": "^7.20.4", |
| 77 | + "husky": "^4.2.5", |
| 78 | + "lint-staged": "^10.2.13", |
| 79 | + "mkdirp": "^1.0.3", |
| 80 | + "npm-run-all": "^4.1.5", |
| 81 | + "prettier": "^1.19.0", |
| 82 | + "rimraf": "^3.0.2", |
| 83 | + "typescript": "~4.1.3" |
| 84 | + }, |
| 85 | + "sideEffects": [ |
| 86 | + "style/*.css", |
| 87 | + "style/index.js" |
| 88 | + ], |
| 89 | + "jupyterlab": { |
| 90 | + "extension": true, |
| 91 | + "schemaDir": "schema", |
| 92 | + "outputDir": "code_snippet/labextension", |
| 93 | + "_build": { |
| 94 | + "load": "static/remoteEntry.11378e5cdb89337016e1.js", |
| 95 | + "extension": "./extension", |
| 96 | + "style": "./style" |
| 97 | + } |
| 98 | + }, |
| 99 | + "husky": { |
| 100 | + "hooks": { |
| 101 | + "pre-commit": "lint-staged" |
| 102 | + } |
| 103 | + }, |
| 104 | + "lint-staged": { |
| 105 | + "*.{js,jsx,ts,tsx}": [ |
| 106 | + "eslint --cache --fix" |
| 107 | + ], |
| 108 | + "*.js": "eslint --cache --fix" |
| 109 | + }, |
| 110 | + "styleModule": "style/index.js" |
| 111 | +} |
0 commit comments