|
1 | 1 | { |
2 | | - "name": "yjs-widgets", |
3 | | - "version": "0.3.7", |
4 | | - "description": "A JupyterLab extension for widgets based on Yjs.", |
5 | | - "keywords": [ |
6 | | - "jupyter", |
7 | | - "jupyterlab", |
8 | | - "jupyterlab-extension", |
9 | | - "yjs" |
10 | | - ], |
11 | | - "homepage": "https://github.com/QuantStack/yjs-widgets", |
12 | | - "bugs": { |
13 | | - "url": "https://github.com/QuantStack/yjs-widgets/issues" |
14 | | - }, |
15 | | - "license": "BSD-3-Clause", |
16 | | - "author": { |
17 | | - "name": "Trung Le", |
18 | | - "email": "leductrungxf@gmail.com" |
19 | | - }, |
20 | | - "files": [ |
21 | | - "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}" |
22 | | - ], |
23 | | - "main": "lib/index.js", |
24 | | - "types": "lib/index.d.ts", |
25 | | - "repository": { |
26 | | - "type": "git", |
27 | | - "url": "https://github.com/QuantStack/yjs-widgets.git" |
28 | | - }, |
29 | | - "scripts": { |
30 | | - "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
31 | | - "build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension", |
32 | | - "build:labextension": "jupyter labextension build .", |
33 | | - "build:labextension:dev": "jupyter labextension build --development True .", |
34 | | - "build:lib": "tsc", |
35 | | - "clean": "jlpm run clean:lib", |
36 | | - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
37 | | - "clean:labextension": "rimraf yjs_widgets/labextension yjs_widgets/_version.py", |
38 | | - "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
39 | | - "eslint": "eslint . --ext .ts,.tsx --fix", |
40 | | - "eslint:check": "eslint . --ext .ts,.tsx", |
41 | | - "install:extension": "jlpm run build", |
42 | | - "lint": "jlpm prettier && jlpm eslint", |
43 | | - "lint:check": "jlpm prettier:check && jlpm eslint:check", |
44 | | - "prettier": "jlpm prettier:base --write --list-different", |
45 | | - "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
46 | | - "prettier:check": "jlpm prettier:base --check", |
47 | | - "watch": "run-p watch:src watch:labextension", |
48 | | - "watch:src": "tsc -w", |
49 | | - "watch:labextension": "jupyter labextension watch ." |
50 | | - }, |
51 | | - "dependencies": { |
52 | | - "@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3", |
53 | | - "@jupyterlab/application": "^4.0.0", |
54 | | - "@jupyterlab/apputils": "^4.0.0", |
55 | | - "@jupyterlab/console": "^4.2.4", |
56 | | - "@jupyterlab/coreutils": "^6.0.0", |
57 | | - "@jupyterlab/notebook": "^4.0.0", |
58 | | - "@jupyterlab/services": "^7.0.0", |
59 | | - "@lumino/coreutils": "^2.1.1", |
60 | | - "@lumino/signaling": "^2.1.1", |
61 | | - "@lumino/widgets": "^2.1.1", |
62 | | - "lib0": "^0.2.76", |
63 | | - "uuid": "^9.0.0", |
64 | | - "webpack": "^5.77.0", |
65 | | - "webpack-cli": "^5.0.1" |
66 | | - }, |
67 | | - "resolutions": { |
68 | | - "@jupyterlab/apputils": "~4.0.0", |
69 | | - "@lumino/coreutils": "^2.1.1", |
70 | | - "@jupyterlab/notebook": "~4.0.0" |
71 | | - }, |
72 | | - "devDependencies": { |
73 | | - "@jupyterlab/builder": "^4.2.1", |
74 | | - "@types/node": "^16.11.10", |
75 | | - "@typescript-eslint/eslint-plugin": "^4.8.1", |
76 | | - "@typescript-eslint/parser": "^4.8.1", |
77 | | - "copy-webpack-plugin": "^10.0.0", |
78 | | - "eslint": "^7.14.0", |
79 | | - "eslint-config-prettier": "^6.15.0", |
80 | | - "eslint-plugin-prettier": "^3.1.4", |
81 | | - "file-loader": "^6.2.0", |
82 | | - "npm-run-all": "^4.1.5", |
83 | | - "prettier": "^2.1.1", |
84 | | - "rimraf": "^3.0.2", |
85 | | - "source-map-loader": "^3.0.0", |
86 | | - "ts-loader": "^9.2.6", |
87 | | - "typescript": "~5.0.4" |
88 | | - }, |
89 | | - "sideEffects": [ |
90 | | - "style/*.css", |
91 | | - "style/index.js" |
92 | | - ], |
93 | | - "styleModule": "style/index.js", |
94 | | - "publishConfig": { |
95 | | - "access": "public" |
96 | | - }, |
97 | | - "jupyterlab": { |
98 | | - "extension": true, |
99 | | - "outputDir": "yjs_widgets/labextension" |
100 | | - } |
| 2 | + "name": "yjs-widgets", |
| 3 | + "version": "0.3.8", |
| 4 | + "description": "A JupyterLab extension for widgets based on Yjs.", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension", |
| 9 | + "yjs" |
| 10 | + ], |
| 11 | + "homepage": "https://github.com/QuantStack/yjs-widgets", |
| 12 | + "bugs": { |
| 13 | + "url": "https://github.com/QuantStack/yjs-widgets/issues" |
| 14 | + }, |
| 15 | + "license": "BSD-3-Clause", |
| 16 | + "author": { |
| 17 | + "name": "Trung Le", |
| 18 | + "email": "leductrungxf@gmail.com" |
| 19 | + }, |
| 20 | + "files": [ |
| 21 | + "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}" |
| 22 | + ], |
| 23 | + "main": "lib/index.js", |
| 24 | + "types": "lib/index.d.ts", |
| 25 | + "repository": { |
| 26 | + "type": "git", |
| 27 | + "url": "https://github.com/QuantStack/yjs-widgets.git" |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
| 31 | + "build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension", |
| 32 | + "build:labextension": "jupyter labextension build .", |
| 33 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 34 | + "build:lib": "tsc", |
| 35 | + "clean": "jlpm run clean:lib", |
| 36 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 37 | + "clean:labextension": "rimraf yjs_widgets/labextension yjs_widgets/_version.py", |
| 38 | + "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
| 39 | + "eslint": "eslint . --ext .ts,.tsx --fix", |
| 40 | + "eslint:check": "eslint . --ext .ts,.tsx", |
| 41 | + "install:extension": "jlpm run build", |
| 42 | + "lint": "jlpm prettier && jlpm eslint", |
| 43 | + "lint:check": "jlpm prettier:check && jlpm eslint:check", |
| 44 | + "prettier": "jlpm prettier:base --write --list-different", |
| 45 | + "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
| 46 | + "prettier:check": "jlpm prettier:base --check", |
| 47 | + "watch": "run-p watch:src watch:labextension", |
| 48 | + "watch:src": "tsc -w", |
| 49 | + "watch:labextension": "jupyter labextension watch ." |
| 50 | + }, |
| 51 | + "dependencies": { |
| 52 | + "@jupyter/ydoc": "^2.0.0 || ^3.0.0-a3", |
| 53 | + "@jupyterlab/application": "^4.0.0", |
| 54 | + "@jupyterlab/apputils": "^4.0.0", |
| 55 | + "@jupyterlab/console": "^4.2.4", |
| 56 | + "@jupyterlab/coreutils": "^6.0.0", |
| 57 | + "@jupyterlab/notebook": "^4.0.0", |
| 58 | + "@jupyterlab/services": "^7.0.0", |
| 59 | + "@lumino/coreutils": "^2.1.1", |
| 60 | + "@lumino/signaling": "^2.1.1", |
| 61 | + "@lumino/widgets": "^2.1.1", |
| 62 | + "lib0": "^0.2.76", |
| 63 | + "uuid": "^9.0.0", |
| 64 | + "webpack": "^5.77.0", |
| 65 | + "webpack-cli": "^5.0.1" |
| 66 | + }, |
| 67 | + "resolutions": { |
| 68 | + "@jupyterlab/apputils": "~4.0.0", |
| 69 | + "@lumino/coreutils": "^2.1.1", |
| 70 | + "@jupyterlab/notebook": "~4.0.0" |
| 71 | + }, |
| 72 | + "devDependencies": { |
| 73 | + "@jupyterlab/builder": "^4.2.1", |
| 74 | + "@types/node": "^16.11.10", |
| 75 | + "@typescript-eslint/eslint-plugin": "^4.8.1", |
| 76 | + "@typescript-eslint/parser": "^4.8.1", |
| 77 | + "copy-webpack-plugin": "^10.0.0", |
| 78 | + "eslint": "^7.14.0", |
| 79 | + "eslint-config-prettier": "^6.15.0", |
| 80 | + "eslint-plugin-prettier": "^3.1.4", |
| 81 | + "file-loader": "^6.2.0", |
| 82 | + "npm-run-all": "^4.1.5", |
| 83 | + "prettier": "^2.1.1", |
| 84 | + "rimraf": "^3.0.2", |
| 85 | + "source-map-loader": "^3.0.0", |
| 86 | + "ts-loader": "^9.2.6", |
| 87 | + "typescript": "~5.0.4" |
| 88 | + }, |
| 89 | + "sideEffects": [ |
| 90 | + "style/*.css", |
| 91 | + "style/index.js" |
| 92 | + ], |
| 93 | + "styleModule": "style/index.js", |
| 94 | + "publishConfig": { |
| 95 | + "access": "public" |
| 96 | + }, |
| 97 | + "jupyterlab": { |
| 98 | + "extension": true, |
| 99 | + "outputDir": "yjs_widgets/labextension" |
| 100 | + } |
101 | 101 | } |
0 commit comments