|
| 1 | +{ |
| 2 | + "name": "@jupyter-notebook/ydoc", |
| 3 | + "version": "0.2.0", |
| 4 | + "type": "module", |
| 5 | + "description": "Jupyter document structures for collaborative editing using YJS", |
| 6 | + "homepage": "https://github.com/jupyter-server/jupyter_ydoc", |
| 7 | + "bugs": { |
| 8 | + "url": "https://github.com/jupyter-server/jupyter_ydoc/issues" |
| 9 | + }, |
| 10 | + "repository": { |
| 11 | + "type": "git", |
| 12 | + "url": "https://github.com/jupyter-server/jupyter_ydoc.git" |
| 13 | + }, |
| 14 | + "license": "BSD-3-Clause", |
| 15 | + "author": "Project Jupyter", |
| 16 | + "main": "lib/index.js", |
| 17 | + "types": "lib/index.d.ts", |
| 18 | + "directories": { |
| 19 | + "lib": "lib/" |
| 20 | + }, |
| 21 | + "files": [ |
| 22 | + "lib/**/*.{d.ts,js,js.map,json}" |
| 23 | + ], |
| 24 | + "scripts": { |
| 25 | + "build": "tsc -b", |
| 26 | + "build:test": "tsc --build tsconfig.test.json", |
| 27 | + "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo", |
| 28 | + "docs": "typedoc src", |
| 29 | + "test": "jest", |
| 30 | + "test:cov": "jest --collect-coverage", |
| 31 | + "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand", |
| 32 | + "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch", |
| 33 | + "watch": "tsc -b --watch" |
| 34 | + }, |
| 35 | + "dependencies": { |
| 36 | + "@jupyterlab/nbformat": "^3.0.0 || ^4.0.0-alpha.15", |
| 37 | + "@lumino/coreutils": "^1.11.0 || ^2.0.0-alpha.6", |
| 38 | + "@lumino/disposable": "^1.10.0 || ^2.0.0-alpha.6", |
| 39 | + "@lumino/signaling": "^1.10.0 || ^2.0.0-alpha.6", |
| 40 | + "y-protocols": "^1.0.5", |
| 41 | + "yjs": "^13.5.40" |
| 42 | + }, |
| 43 | + "devDependencies": { |
| 44 | + "@types/jest": "^26.0.10", |
| 45 | + "jest": "^26.4.2", |
| 46 | + "rimraf": "~3.0.0", |
| 47 | + "ts-jest": "^26.3.0", |
| 48 | + "typescript": "~4.7.3" |
| 49 | + }, |
| 50 | + "publishConfig": { |
| 51 | + "access": "public" |
| 52 | + } |
| 53 | +} |
0 commit comments