-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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>
- Loading branch information
1 parent
13bfecb
commit 92b43f7
Showing
2 changed files
with
136 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,136 +1,136 @@ | ||
{ | ||
"name": "glue-jupyterlab", | ||
"version": "0.3.0", | ||
"description": "A JupyterLab extension for glue-viz", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/QuantStack/glue-jupyterlab", | ||
"bugs": { | ||
"url": "https://github.com/QuantStack/glue-jupyterlab/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "QuantStack", | ||
"email": "[email protected]" | ||
}, | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | ||
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"style": "style/index.css", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/QuantStack/glue-jupyterlab.git" | ||
}, | ||
"scripts": { | ||
"build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev", | ||
"build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension", | ||
"build:labextension": "jupyter labextension build .", | ||
"build:labextension:dev": "jupyter labextension build --development True .", | ||
"build:lib": "tsc --sourceMap", | ||
"build:lib:prod": "tsc", | ||
"build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas", | ||
"clean": "jlpm clean:lib", | ||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo", | ||
"clean:lintcache": "rimraf .eslintcache .stylelintcache", | ||
"clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py", | ||
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", | ||
"eslint": "jlpm eslint:check --fix", | ||
"eslint:check": "eslint . --cache --ext .ts,.tsx", | ||
"install:extension": "jlpm build", | ||
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint", | ||
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", | ||
"prettier": "jlpm prettier:base --write --list-different", | ||
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "jlpm prettier:base --check", | ||
"stylelint": "jlpm stylelint:check --fix", | ||
"stylelint:check": "stylelint --cache \"style/**/*.css\"", | ||
"test": "jest --coverage", | ||
"watch": "run-p watch:src watch:labextension", | ||
"watch:src": "tsc -w", | ||
"watch:labextension": "jupyter labextension watch ." | ||
}, | ||
"dependencies": { | ||
"@jupyter/docprovider": "^1.0.0-alpha.8", | ||
"@jupyter/ydoc": "^1.0.2", | ||
"@jupyterlab/application": "^4.0.0", | ||
"@jupyterlab/apputils": "^4.0.0", | ||
"@jupyterlab/coreutils": "^6.0.0", | ||
"@jupyterlab/docregistry": "^4.0.0", | ||
"@jupyterlab/launcher": "^4.0.2", | ||
"@jupyterlab/mainmenu": "^4.0.0", | ||
"@jupyterlab/notebook": "^4.0.0", | ||
"@jupyterlab/observables": "^5.0.0", | ||
"@jupyterlab/rendermime": "^4.0.0", | ||
"@jupyterlab/services": "^7.0.0", | ||
"@jupyterlab/ui-components": "^4.0.0", | ||
"@lumino/algorithm": "^2.0.0", | ||
"@lumino/commands": "^2.1.0", | ||
"@lumino/coreutils": "^2.1.0", | ||
"@lumino/disposable": "^2.1.0", | ||
"@lumino/messaging": "^2.0.0", | ||
"@lumino/signaling": "^2.1.0", | ||
"@lumino/widgets": "^2.1.0", | ||
"gridstack": "^6.0.1", | ||
"yjs-widgets": "^0.3.3" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/builder": "^4.0.0", | ||
"@jupyterlab/testutils": "^4.0.0", | ||
"@types/jest": "^29.2.0", | ||
"@typescript-eslint/eslint-plugin": "^4.8.1", | ||
"@typescript-eslint/parser": "^4.8.1", | ||
"eslint": "^7.14.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"jest": "^29.5.0", | ||
"json-schema-to-typescript": "^10.1.5", | ||
"mkdirp": "^1.0.3", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.1", | ||
"rimraf": "^3.0.2", | ||
"stylelint": "^14.3.0", | ||
"stylelint-config-prettier": "^9.0.4", | ||
"stylelint-config-recommended": "^6.0.0", | ||
"stylelint-config-standard": "~24.0.0", | ||
"stylelint-prettier": "^2.0.0", | ||
"typescript": "~5.0.4" | ||
}, | ||
"sideEffects": [ | ||
"style/*.css", | ||
"style/index.js" | ||
], | ||
"styleModule": "style/index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"jupyterlab": { | ||
"discovery": { | ||
"server": { | ||
"managers": [ | ||
"pip" | ||
], | ||
"base": { | ||
"name": "glue-jupyterlab" | ||
} | ||
} | ||
}, | ||
"extension": true, | ||
"outputDir": "glue_jupyterlab/labextension", | ||
"sharedPackages": { | ||
"yjs": { | ||
"bundled": false, | ||
"singleton": true | ||
}, | ||
"yjs-widgets": { | ||
"bundled": false, | ||
"singleton": true | ||
} | ||
"name": "glue-jupyterlab", | ||
"version": "0.3.0", | ||
"description": "A JupyterLab extension for glue-viz", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/QuantStack/glue-jupyterlab", | ||
"bugs": { | ||
"url": "https://github.com/QuantStack/glue-jupyterlab/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "QuantStack", | ||
"email": "[email protected]" | ||
}, | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | ||
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"style": "style/index.css", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/QuantStack/glue-jupyterlab.git" | ||
}, | ||
"scripts": { | ||
"build": "jlpm build:schema && jlpm build:lib && jlpm build:labextension:dev", | ||
"build:prod": "jlpm clean && jlpm build:schema && jlpm build:lib:prod && jlpm build:labextension", | ||
"build:labextension": "jupyter labextension build .", | ||
"build:labextension:dev": "jupyter labextension build --development True .", | ||
"build:lib": "tsc --sourceMap", | ||
"build:lib:prod": "tsc", | ||
"build:schema": "json2ts -i src/schemas -o src/_interface --no-unknownAny --unreachableDefinitions --cwd ./src/schemas", | ||
"clean": "jlpm clean:lib", | ||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo", | ||
"clean:lintcache": "rimraf .eslintcache .stylelintcache", | ||
"clean:labextension": "rimraf glue_jupyterlab/labextension glue_jupyterlab/_version.py", | ||
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache", | ||
"eslint": "jlpm eslint:check --fix", | ||
"eslint:check": "eslint . --cache --ext .ts,.tsx", | ||
"install:extension": "jlpm build", | ||
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint", | ||
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check", | ||
"prettier": "jlpm prettier:base --write --list-different", | ||
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"", | ||
"prettier:check": "jlpm prettier:base --check", | ||
"stylelint": "jlpm stylelint:check --fix", | ||
"stylelint:check": "stylelint --cache \"style/**/*.css\"", | ||
"test": "jest --coverage", | ||
"watch": "run-p watch:src watch:labextension", | ||
"watch:src": "tsc -w", | ||
"watch:labextension": "jupyter labextension watch ." | ||
}, | ||
"dependencies": { | ||
"@jupyter/docprovider": "^1.0.0-alpha.8", | ||
"@jupyter/ydoc": "^1.0.2", | ||
"@jupyterlab/application": "^4.0.0", | ||
"@jupyterlab/apputils": "^4.0.0", | ||
"@jupyterlab/coreutils": "^6.0.0", | ||
"@jupyterlab/docregistry": "^4.0.0", | ||
"@jupyterlab/launcher": "^4.0.2", | ||
"@jupyterlab/mainmenu": "^4.0.0", | ||
"@jupyterlab/notebook": "^4.0.0", | ||
"@jupyterlab/observables": "^5.0.0", | ||
"@jupyterlab/rendermime": "^4.0.0", | ||
"@jupyterlab/services": "^7.0.0", | ||
"@jupyterlab/ui-components": "^4.0.0", | ||
"@lumino/algorithm": "^2.0.0", | ||
"@lumino/commands": "^2.1.0", | ||
"@lumino/coreutils": "^2.1.0", | ||
"@lumino/disposable": "^2.1.0", | ||
"@lumino/messaging": "^2.0.0", | ||
"@lumino/signaling": "^2.1.0", | ||
"@lumino/widgets": "^2.1.0", | ||
"gridstack": "^6.0.1", | ||
"yjs-widgets": "^0.3.3" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/builder": "^4.0.0", | ||
"@jupyterlab/testutils": "^4.0.0", | ||
"@types/jest": "^29.2.0", | ||
"@typescript-eslint/eslint-plugin": "^4.8.1", | ||
"@typescript-eslint/parser": "^4.8.1", | ||
"eslint": "^7.14.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"jest": "^29.5.0", | ||
"json-schema-to-typescript": "^10.1.5", | ||
"mkdirp": "^1.0.3", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^2.1.1", | ||
"rimraf": "^3.0.2", | ||
"stylelint": "^14.3.0", | ||
"stylelint-config-prettier": "^9.0.4", | ||
"stylelint-config-recommended": "^6.0.0", | ||
"stylelint-config-standard": "~24.0.0", | ||
"stylelint-prettier": "^2.0.0", | ||
"typescript": "~5.0.4" | ||
}, | ||
"sideEffects": [ | ||
"style/*.css", | ||
"style/index.js" | ||
], | ||
"styleModule": "style/index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"jupyterlab": { | ||
"discovery": { | ||
"server": { | ||
"managers": [ | ||
"pip" | ||
], | ||
"base": { | ||
"name": "glue-jupyterlab" | ||
} | ||
} | ||
}, | ||
"extension": true, | ||
"outputDir": "glue_jupyterlab/labextension", | ||
"sharedPackages": { | ||
"yjs": { | ||
"bundled": false, | ||
"singleton": true | ||
}, | ||
"yjs-widgets": { | ||
"bundled": false, | ||
"singleton": true | ||
} | ||
} | ||
} | ||
} |