|
1 | 1 | {
|
2 |
| - "name": "glue-jupyterlab", |
3 |
| - "version": "0.3.0", |
4 |
| - "description": "A JupyterLab extension for glue-viz", |
5 |
| - "keywords": [ |
6 |
| - "jupyter", |
7 |
| - "jupyterlab", |
8 |
| - "jupyterlab-extension" |
9 |
| - ], |
10 |
| - "homepage": "https://github.com/QuantStack/glue-jupyterlab", |
11 |
| - "bugs": { |
12 |
| - "url": "https://github.com/QuantStack/glue-jupyterlab/issues" |
13 |
| - }, |
14 |
| - "license": "BSD-3-Clause", |
15 |
| - "author": { |
16 |
| - "name": "QuantStack", |
17 |
| - |
18 |
| - }, |
19 |
| - "files": [ |
20 |
| - "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
21 |
| - "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" |
22 |
| - ], |
23 |
| - "main": "lib/index.js", |
24 |
| - "types": "lib/index.d.ts", |
25 |
| - "style": "style/index.css", |
26 |
| - "repository": { |
27 |
| - "type": "git", |
28 |
| - "url": "https://github.com/QuantStack/glue-jupyterlab.git" |
29 |
| - }, |
30 |
| - "scripts": { |
31 |
| - "build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev", |
32 |
| - "build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension", |
33 |
| - "build:labextension": "jupyter labextension build .", |
34 |
| - "build:labextension:dev": "jupyter labextension build --development True .", |
35 |
| - "build:lib": "tsc --sourceMap", |
36 |
| - "build:lib:prod": "tsc", |
37 |
| - "build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas", |
38 |
| - "clean": "jlpm clean:lib", |
39 |
| - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
40 |
| - "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
41 |
| - "clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py", |
42 |
| - "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", |
43 |
| - "eslint": "jlpm eslint:check --fix", |
44 |
| - "eslint:check": "eslint . --cache --ext .ts,.tsx", |
45 |
| - "install:extension": "jlpm build", |
46 |
| - "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
47 |
| - "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
48 |
| - "prettier": "jlpm prettier:base --write --list-different", |
49 |
| - "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
50 |
| - "prettier:check": "jlpm prettier:base --check", |
51 |
| - "stylelint": "jlpm stylelint:check --fix", |
52 |
| - "stylelint:check": "stylelint --cache \"style/**/*.css\"", |
53 |
| - "test": "jest --coverage", |
54 |
| - "watch": "run-p watch:src watch:labextension", |
55 |
| - "watch:src": "tsc -w", |
56 |
| - "watch:labextension": "jupyter labextension watch ." |
57 |
| - }, |
58 |
| - "dependencies": { |
59 |
| - "@jupyter/docprovider": "^1.0.0-alpha.8", |
60 |
| - "@jupyter/ydoc": "^1.0.2", |
61 |
| - "@jupyterlab/application": "^4.0.0", |
62 |
| - "@jupyterlab/apputils": "^4.0.0", |
63 |
| - "@jupyterlab/coreutils": "^6.0.0", |
64 |
| - "@jupyterlab/docregistry": "^4.0.0", |
65 |
| - "@jupyterlab/launcher": "^4.0.2", |
66 |
| - "@jupyterlab/mainmenu": "^4.0.0", |
67 |
| - "@jupyterlab/notebook": "^4.0.0", |
68 |
| - "@jupyterlab/observables": "^5.0.0", |
69 |
| - "@jupyterlab/rendermime": "^4.0.0", |
70 |
| - "@jupyterlab/services": "^7.0.0", |
71 |
| - "@jupyterlab/ui-components": "^4.0.0", |
72 |
| - "@lumino/algorithm": "^2.0.0", |
73 |
| - "@lumino/commands": "^2.1.0", |
74 |
| - "@lumino/coreutils": "^2.1.0", |
75 |
| - "@lumino/disposable": "^2.1.0", |
76 |
| - "@lumino/messaging": "^2.0.0", |
77 |
| - "@lumino/signaling": "^2.1.0", |
78 |
| - "@lumino/widgets": "^2.1.0", |
79 |
| - "gridstack": "^6.0.1", |
80 |
| - "yjs-widgets": "^0.3.3" |
81 |
| - }, |
82 |
| - "devDependencies": { |
83 |
| - "@jupyterlab/builder": "^4.0.0", |
84 |
| - "@jupyterlab/testutils": "^4.0.0", |
85 |
| - "@types/jest": "^29.2.0", |
86 |
| - "@typescript-eslint/eslint-plugin": "^4.8.1", |
87 |
| - "@typescript-eslint/parser": "^4.8.1", |
88 |
| - "eslint": "^7.14.0", |
89 |
| - "eslint-config-prettier": "^6.15.0", |
90 |
| - "eslint-plugin-prettier": "^3.1.4", |
91 |
| - "jest": "^29.5.0", |
92 |
| - "json-schema-to-typescript": "^10.1.5", |
93 |
| - "mkdirp": "^1.0.3", |
94 |
| - "npm-run-all": "^4.1.5", |
95 |
| - "prettier": "^2.1.1", |
96 |
| - "rimraf": "^3.0.2", |
97 |
| - "stylelint": "^14.3.0", |
98 |
| - "stylelint-config-prettier": "^9.0.4", |
99 |
| - "stylelint-config-recommended": "^6.0.0", |
100 |
| - "stylelint-config-standard": "~24.0.0", |
101 |
| - "stylelint-prettier": "^2.0.0", |
102 |
| - "typescript": "~5.0.4" |
103 |
| - }, |
104 |
| - "sideEffects": [ |
105 |
| - "style/*.css", |
106 |
| - "style/index.js" |
107 |
| - ], |
108 |
| - "styleModule": "style/index.js", |
109 |
| - "publishConfig": { |
110 |
| - "access": "public" |
111 |
| - }, |
112 |
| - "jupyterlab": { |
113 |
| - "discovery": { |
114 |
| - "server": { |
115 |
| - "managers": [ |
116 |
| - "pip" |
117 |
| - ], |
118 |
| - "base": { |
119 |
| - "name": "glue-jupyterlab" |
120 |
| - } |
121 |
| - } |
122 |
| - }, |
123 |
| - "extension": true, |
124 |
| - "outputDir": "glue_jupyterlab/labextension", |
125 |
| - "sharedPackages": { |
126 |
| - "yjs": { |
127 |
| - "bundled": false, |
128 |
| - "singleton": true |
129 |
| - }, |
130 |
| - "yjs-widgets": { |
131 |
| - "bundled": false, |
132 |
| - "singleton": true |
133 |
| - } |
| 2 | + "name": "glue-jupyterlab", |
| 3 | + "version": "0.3.0", |
| 4 | + "description": "A JupyterLab extension for glue-viz", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension" |
| 9 | + ], |
| 10 | + "homepage": "https://github.com/QuantStack/glue-jupyterlab", |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/QuantStack/glue-jupyterlab/issues" |
| 13 | + }, |
| 14 | + "license": "BSD-3-Clause", |
| 15 | + "author": { |
| 16 | + "name": "QuantStack", |
| 17 | + |
| 18 | + }, |
| 19 | + "files": [ |
| 20 | + "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
| 21 | + "style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" |
| 22 | + ], |
| 23 | + "main": "lib/index.js", |
| 24 | + "types": "lib/index.d.ts", |
| 25 | + "style": "style/index.css", |
| 26 | + "repository": { |
| 27 | + "type": "git", |
| 28 | + "url": "https://github.com/QuantStack/glue-jupyterlab.git" |
| 29 | + }, |
| 30 | + "scripts": { |
| 31 | + "build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev", |
| 32 | + "build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension", |
| 33 | + "build:labextension": "jupyter labextension build .", |
| 34 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 35 | + "build:lib": "tsc --sourceMap", |
| 36 | + "build:lib:prod": "tsc", |
| 37 | + "build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas", |
| 38 | + "clean": "jlpm clean:lib", |
| 39 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 40 | + "clean:lintcache": "rimraf .eslintcache .stylelintcache", |
| 41 | + "clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py", |
| 42 | + "clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", |
| 43 | + "eslint": "jlpm eslint:check --fix", |
| 44 | + "eslint:check": "eslint . --cache --ext .ts,.tsx", |
| 45 | + "install:extension": "jlpm build", |
| 46 | + "lint": "jlpm stylelint && jlpm prettier && jlpm eslint", |
| 47 | + "lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", |
| 48 | + "prettier": "jlpm prettier:base --write --list-different", |
| 49 | + "prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", |
| 50 | + "prettier:check": "jlpm prettier:base --check", |
| 51 | + "stylelint": "jlpm stylelint:check --fix", |
| 52 | + "stylelint:check": "stylelint --cache \"style/**/*.css\"", |
| 53 | + "test": "jest --coverage", |
| 54 | + "watch": "run-p watch:src watch:labextension", |
| 55 | + "watch:src": "tsc -w", |
| 56 | + "watch:labextension": "jupyter labextension watch ." |
| 57 | + }, |
| 58 | + "dependencies": { |
| 59 | + "@jupyter/docprovider": "^1.0.0-alpha.8", |
| 60 | + "@jupyter/ydoc": "^1.0.2", |
| 61 | + "@jupyterlab/application": "^4.0.0", |
| 62 | + "@jupyterlab/apputils": "^4.0.0", |
| 63 | + "@jupyterlab/coreutils": "^6.0.0", |
| 64 | + "@jupyterlab/docregistry": "^4.0.0", |
| 65 | + "@jupyterlab/launcher": "^4.0.2", |
| 66 | + "@jupyterlab/mainmenu": "^4.0.0", |
| 67 | + "@jupyterlab/notebook": "^4.0.0", |
| 68 | + "@jupyterlab/observables": "^5.0.0", |
| 69 | + "@jupyterlab/rendermime": "^4.0.0", |
| 70 | + "@jupyterlab/services": "^7.0.0", |
| 71 | + "@jupyterlab/ui-components": "^4.0.0", |
| 72 | + "@lumino/algorithm": "^2.0.0", |
| 73 | + "@lumino/commands": "^2.1.0", |
| 74 | + "@lumino/coreutils": "^2.1.0", |
| 75 | + "@lumino/disposable": "^2.1.0", |
| 76 | + "@lumino/messaging": "^2.0.0", |
| 77 | + "@lumino/signaling": "^2.1.0", |
| 78 | + "@lumino/widgets": "^2.1.0", |
| 79 | + "gridstack": "^6.0.1", |
| 80 | + "yjs-widgets": "^0.3.3" |
| 81 | + }, |
| 82 | + "devDependencies": { |
| 83 | + "@jupyterlab/builder": "^4.0.0", |
| 84 | + "@jupyterlab/testutils": "^4.0.0", |
| 85 | + "@types/jest": "^29.2.0", |
| 86 | + "@typescript-eslint/eslint-plugin": "^4.8.1", |
| 87 | + "@typescript-eslint/parser": "^4.8.1", |
| 88 | + "eslint": "^7.14.0", |
| 89 | + "eslint-config-prettier": "^6.15.0", |
| 90 | + "eslint-plugin-prettier": "^3.1.4", |
| 91 | + "jest": "^29.5.0", |
| 92 | + "json-schema-to-typescript": "^10.1.5", |
| 93 | + "mkdirp": "^1.0.3", |
| 94 | + "npm-run-all": "^4.1.5", |
| 95 | + "prettier": "^2.1.1", |
| 96 | + "rimraf": "^3.0.2", |
| 97 | + "stylelint": "^14.3.0", |
| 98 | + "stylelint-config-prettier": "^9.0.4", |
| 99 | + "stylelint-config-recommended": "^6.0.0", |
| 100 | + "stylelint-config-standard": "~24.0.0", |
| 101 | + "stylelint-prettier": "^2.0.0", |
| 102 | + "typescript": "~5.0.4" |
| 103 | + }, |
| 104 | + "sideEffects": [ |
| 105 | + "style/*.css", |
| 106 | + "style/index.js" |
| 107 | + ], |
| 108 | + "styleModule": "style/index.js", |
| 109 | + "publishConfig": { |
| 110 | + "access": "public" |
| 111 | + }, |
| 112 | + "jupyterlab": { |
| 113 | + "discovery": { |
| 114 | + "server": { |
| 115 | + "managers": [ |
| 116 | + "pip" |
| 117 | + ], |
| 118 | + "base": { |
| 119 | + "name": "glue-jupyterlab" |
134 | 120 | }
|
| 121 | + } |
| 122 | + }, |
| 123 | + "extension": true, |
| 124 | + "outputDir": "glue_jupyterlab/labextension", |
| 125 | + "sharedPackages": { |
| 126 | + "yjs": { |
| 127 | + "bundled": false, |
| 128 | + "singleton": true |
| 129 | + }, |
| 130 | + "yjs-widgets": { |
| 131 | + "bundled": false, |
| 132 | + "singleton": true |
| 133 | + } |
135 | 134 | }
|
| 135 | + } |
136 | 136 | }
|
0 commit comments