|
| 1 | +{ |
| 2 | + "name": "@datalayer-examples/ext-consumer", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "A lab extension consuming a string.", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/my_name/myextension", |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/my_name/myextension/issues" |
| 13 | + }, |
| 14 | + "license": "BSD-3-Clause", |
| 15 | + "author": { |
| 16 | + "name": "Eric Charles", |
| 17 | + |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
| 21 | + "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" |
| 22 | + ], |
| 23 | + "main": "lib/index.js", |
| 24 | + "types": "lib/index.d.ts", |
| 25 | + "style": "style/index.css", |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "https://github.com/my_name/myextension.git" |
| 29 | + }, |
| 30 | + "scripts": { |
| 31 | + "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
| 32 | + "build:prod": "jlpm run build:lib && jlpm run build:labextension", |
| 33 | + "build:labextension": "jupyter labextension build .", |
| 34 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 35 | + "build:lib": "tsc", |
| 36 | + "clean": "jlpm run clean:lib", |
| 37 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 38 | + "clean:labextension": "rimraf consumer/labextension", |
| 39 | + "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
| 40 | + "dev": "pip install -e . && jupyter labextension develop . --overwrite", |
| 41 | + "eslint": "eslint . --ext .ts,.tsx --fix", |
| 42 | + "eslint:check": "eslint . --ext .ts,.tsx", |
| 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:src": "tsc -w", |
| 47 | + "watch:labextension": "jupyter labextension watch ." |
| 48 | + }, |
| 49 | + "dependencies": { |
| 50 | + "@jupyterlab/application": "4.0.0-alpha.18", |
| 51 | + "@lumino/coreutils": "2.0.0-beta.0", |
| 52 | + "@datalayer-examples/ext-provider": "0.1.0" |
| 53 | + }, |
| 54 | + "devDependencies": { |
| 55 | + "@jupyterlab/builder": "4.0.0-alpha.18", |
| 56 | + "@types/react": "18.0.28", |
| 57 | + "@typescript-eslint/eslint-plugin": "^2.27.0", |
| 58 | + "@typescript-eslint/parser": "^2.27.0", |
| 59 | + "eslint": "^7.5.0", |
| 60 | + "eslint-config-prettier": "^6.10.1", |
| 61 | + "eslint-plugin-prettier": "^3.1.2", |
| 62 | + "npm-run-all": "^4.1.5", |
| 63 | + "prettier": "^1.19.0", |
| 64 | + "rimraf": "^3.0.2", |
| 65 | + "typescript": "~4.0.3" |
| 66 | + }, |
| 67 | + "sideEffects": [ |
| 68 | + "style/*.css" |
| 69 | + ], |
| 70 | + "jupyterlab": { |
| 71 | + "extension": true, |
| 72 | + "outputDir": "consumer/labextension", |
| 73 | + "sharedPackages": { |
| 74 | + "provider": {"requiredVersion": "0.1.0", "bundled": false, "singleton": true} |
| 75 | + } |
| 76 | + }, |
| 77 | + "publishConfig": { |
| 78 | + "registry": "http://localhost:4873" |
| 79 | + } |
| 80 | +} |
0 commit comments