UNPKG

1.97 kBJSONView Raw
1{
2 "name": "@jupyterlab/services",
3 "version": "7.2.4",
4 "description": "Client APIs for the Jupyter services REST APIs",
5 "keywords": [
6 "jupyter",
7 "notebook",
8 "services"
9 ],
10 "homepage": "https://github.com/jupyterlab/jupyterlab",
11 "bugs": {
12 "url": "https://github.com/jupyterlab/jupyterlab/issues"
13 },
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/jupyterlab/jupyterlab"
17 },
18 "license": "BSD-3-Clause",
19 "author": "Project Jupyter",
20 "main": "lib/index.js",
21 "browser": {
22 "ws": "./lib/shim/ws.js"
23 },
24 "typings": "lib/index.d.ts",
25 "files": [
26 "lib/**/*.js",
27 "lib/*.js.map",
28 "lib/**/*.d.ts",
29 "lib/**/*.js.map",
30 "lib/*.js",
31 "lib/*.d.ts",
32 "dist/*.js",
33 "dist/**/*.js",
34 "src/**/*.{ts,tsx}"
35 ],
36 "scripts": {
37 "build": "tsc -b",
38 "build:all": "npm run build && webpack",
39 "build:test": "tsc --build tsconfig.test.json",
40 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
41 "test": "jest -i",
42 "test:cov": "jest -i --collect-coverage",
43 "test:debug": "node --inspect-brk ../../node_modules/.bin/jest --runInBand",
44 "test:debug:watch": "node --inspect-brk ../../node_modules/.bin/jest --runInBand --watch",
45 "watch": "tsc -b --watch"
46 },
47 "dependencies": {
48 "@jupyter/ydoc": "^2.0.1",
49 "@jupyterlab/coreutils": "^6.2.4",
50 "@jupyterlab/nbformat": "^4.2.4",
51 "@jupyterlab/settingregistry": "^4.2.4",
52 "@jupyterlab/statedb": "^4.2.4",
53 "@lumino/coreutils": "^2.1.2",
54 "@lumino/disposable": "^2.1.2",
55 "@lumino/polling": "^2.1.2",
56 "@lumino/properties": "^2.0.1",
57 "@lumino/signaling": "^2.1.2",
58 "ws": "^8.11.0"
59 },
60 "devDependencies": {
61 "@jupyterlab/testing": "^4.2.4",
62 "@types/jest": "^29.2.0",
63 "@types/ws": "^8.5.3",
64 "jest": "^29.2.0",
65 "rimraf": "~5.0.5",
66 "typescript": "~5.1.6",
67 "webpack": "^5.76.1",
68 "webpack-cli": "^5.0.1"
69 },
70 "publishConfig": {
71 "access": "public"
72 }
73}