12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "@jupyterlab/nbconvert-css",
- "version": "3.4.3",
- "description": "CSS bundle for the JupyterLab nbconvert template",
- "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",
- "sideEffects": [
- "style/*.css",
- "style/index.js"
- ],
- "main": "style/index.js",
- "directories": {
- "style": "style/"
- },
- "files": [
- "style/*.js",
- "style/*.css"
- ],
- "scripts": {
- "build": "webpack --mode=production",
- "build:all": "npm run build",
- "clean": "rimraf style/",
- "watch": "webpack --watch"
- },
- "dependencies": {
- "@jupyterlab/application": "^3.4.3",
- "@jupyterlab/apputils": "^3.4.3",
- "@jupyterlab/cells": "^3.4.3",
- "@jupyterlab/codemirror": "^3.4.3",
- "@jupyterlab/notebook": "^3.4.3",
- "@jupyterlab/outputarea": "^3.4.3",
- "@jupyterlab/rendermime": "^3.4.3"
- },
- "devDependencies": {
- "css-loader": "^5.0.1",
- "file-loader": "~6.0.0",
- "mini-css-extract-plugin": "~1.3.2",
- "null-loader": "^4.0.0",
- "rimraf": "~3.0.0",
- "url-loader": "~4.1.0",
- "webpack": "^5.41.1",
- "webpack-cli": "^4.1.0"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|