12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@jupyterlab/nbconvert-css",
- "version": "3.0.0-alpha.4",
- "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",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "style/*.css"
- ],
- "sideEffects": [
- "style/*.css"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "webpack && rimraf style/index.js",
- "clean": "rimraf style/",
- "prepublishOnly": "npm run build",
- "watch": "webpack --watch"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^3.0.0-alpha.4",
- "@jupyterlab/cells": "^3.0.0-alpha.4",
- "@jupyterlab/codemirror": "^3.0.0-alpha.4",
- "@jupyterlab/notebook": "^3.0.0-alpha.4",
- "@jupyterlab/outputarea": "^3.0.0-alpha.4",
- "@jupyterlab/rendermime": "^3.0.0-alpha.4"
- },
- "devDependencies": {
- "css-loader": "~3.2.0",
- "file-loader": "~5.0.2",
- "mini-css-extract-plugin": "~0.9.0",
- "null-loader": "^3.0.0",
- "rimraf": "~3.0.0",
- "typescript": "~3.9.2",
- "url-loader": "~3.0.0",
- "webpack": "5.0.0-beta.21",
- "webpack-cli": "^3.3.10"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|