12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "@jupyterlab/services",
- "version": "5.0.0-alpha.4",
- "description": "Client APIs for the Jupyter services REST APIs",
- "keywords": [
- "jupyter",
- "notebook",
- "services"
- ],
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/**/*.js",
- "lib/*.js.map",
- "lib/**/*.d.ts",
- "lib/**/*.js.map",
- "lib/*.js",
- "lib/*.d.ts",
- "dist/*.js",
- "dist/**/*.js"
- ],
- "main": "lib/index.js",
- "browser": {
- "node-fetch": false,
- "ws": false
- },
- "typings": "lib/index.d.ts",
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf docs && rimraf lib",
- "docs": "typedoc src",
- "prepublishOnly": "jlpm run build && webpack",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@jupyterlab/coreutils": "^4.0.0-alpha.4",
- "@jupyterlab/observables": "^3.0.0-alpha.4",
- "@lumino/algorithm": "^1.2.1",
- "@lumino/coreutils": "^1.4.0",
- "@lumino/disposable": "^1.3.2",
- "@lumino/polling": "^1.0.1",
- "@lumino/signaling": "^1.3.2",
- "node-fetch": "^2.6.0",
- "ws": "^7.2.0"
- },
- "devDependencies": {
- "@types/node": "^12.12.17",
- "@types/text-encoding": "^0.0.35",
- "rimraf": "~3.0.0",
- "text-encoding": "^0.7.0",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3",
- "webpack": "^4.41.2",
- "webpack-cli": "^3.3.10"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|