1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "@jupyterlab/theme-dark-extension",
- "version": "0.16.2",
- "description": "JupyterLab - Default Dark Theme",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "static/*.css",
- "static/*.ttf",
- "static/*.eot",
- "static/*.woff",
- "static/*.woff2"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "scripts": {
- "build": "run-p build:**",
- "build:typescript": "tsc",
- "build:webpack": "webpack",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "run-p watch:**",
- "watch:typescript": "tsc -w --listEmittedFiles",
- "watch:webpack": "webpack --watch"
- },
- "dependencies": {
- "@jupyterlab/application": "^0.16.2",
- "@jupyterlab/apputils": "^0.16.3",
- "font-awesome": "~4.7.0"
- },
- "devDependencies": {
- "css-loader": "~0.28.7",
- "mini-css-extract-plugin": "^0.4.0",
- "npm-run-all": "~4.1.1",
- "rimraf": "~2.6.2",
- "svg-url-loader": "~2.3.1",
- "svgo": "~1.0.4",
- "svgo-loader": "~2.1.0",
- "typescript": "~2.9.2",
- "url-loader": "~1.0.1",
- "webpack": "~4.12.0",
- "webpack-cli": "^3.0.3"
- },
- "jupyterlab": {
- "extension": true,
- "themeDir": "static"
- }
- }
|