Skip to content

Commit 92b43f7

Browse files
[pre-commit.ci] pre-commit autoupdate (#118)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/psf/black: 23.3.0 → 23.7.0](psf/black@23.3.0...23.7.0) - [github.com/astral-sh/ruff-pre-commit: v0.0.276 → v0.0.281](astral-sh/ruff-pre-commit@v0.0.276...v0.0.281) - [github.com/pre-commit/mirrors-eslint: v8.44.0 → v8.46.0](pre-commit/mirrors-eslint@v8.44.0...v8.46.0) - [github.com/pre-commit/mirrors-prettier: v3.0.0-alpha.9-for-vscode → v3.0.0](pre-commit/mirrors-prettier@v3.0.0-alpha.9-for-vscode...v3.0.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 13bfecb commit 92b43f7

File tree

2 files changed

+136
-136
lines changed

2 files changed

+136
-136
lines changed

.pre-commit-config.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,18 @@ repos:
2626

2727
# Autoformat: Python code
2828
- repo: https://github.com/psf/black
29-
rev: 23.3.0
29+
rev: 23.7.0
3030
hooks:
3131
- id: black
3232

3333
- repo: https://github.com/astral-sh/ruff-pre-commit
34-
rev: v0.0.276
34+
rev: v0.0.281
3535
hooks:
3636
- id: ruff
3737
args: ['--fix']
3838

3939
- repo: https://github.com/pre-commit/mirrors-eslint
40-
rev: v8.44.0
40+
rev: v8.46.0
4141
hooks:
4242
- id: eslint
4343
files: \.tsx?$
@@ -50,6 +50,6 @@ repos:
5050
- 'eslint-config-prettier'
5151

5252
- repo: https://github.com/pre-commit/mirrors-prettier
53-
rev: v3.0.0-alpha.9-for-vscode
53+
rev: v3.0.0
5454
hooks:
5555
- id: prettier

package.json

+132-132
Original file line numberDiff line numberDiff line change
@@ -1,136 +1,136 @@
11
{
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-
"email": "[email protected]"
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+
"email": "[email protected]"
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"
134120
}
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+
}
135134
}
135+
}
136136
}

0 commit comments

Comments
 (0)