12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "name": "@jupyterlab/documentsearch",
- "version": "3.0.0-alpha.4",
- "description": "Document Search",
- "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,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
- "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
- ],
- "sideEffects": [
- "style/*"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "style": "style/index.css",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w --listEmittedFiles"
- },
- "dependencies": {
- "@jupyterlab/apputils": "^3.0.0-alpha.4",
- "@jupyterlab/cells": "^3.0.0-alpha.4",
- "@jupyterlab/codeeditor": "^3.0.0-alpha.4",
- "@jupyterlab/codemirror": "^3.0.0-alpha.4",
- "@jupyterlab/fileeditor": "^3.0.0-alpha.4",
- "@jupyterlab/notebook": "^3.0.0-alpha.4",
- "@jupyterlab/ui-components": "^3.0.0-alpha.4",
- "@lumino/algorithm": "^1.2.3",
- "@lumino/coreutils": "^1.4.3",
- "@lumino/disposable": "^1.3.5",
- "@lumino/polling": "^1.1.1",
- "@lumino/signaling": "^1.3.5",
- "@lumino/widgets": "^1.11.1",
- "codemirror": "~5.53.2",
- "react": "~16.9.0"
- },
- "devDependencies": {
- "rimraf": "~3.0.0",
- "typescript": "~3.9.2"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|