-
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.
SHA256 hashes: glue-jupyterlab-0.3.0.tgz: be09e6f80efc92b8742b41e0bb27ed2370d2a2a63bd012b18fa72d52e29b3036 glue_jupyterlab-0.3.0-py3-none-any.whl: 538786bbf24727b00d24fb7f8c8e9bc825614b575fd0097330b48168e8d55ac6 glue_jupyterlab-0.3.0.tar.gz: b281e4523f3f3daf3a1769b2f7765a531d6f591414e4b25a3760f10f2daa7630
- Loading branch information
1 parent
363164d
commit 13bfecb
Showing
2 changed files
with
148 additions
and
132 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.2.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" | ||
} | ||
} | ||
"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 ." | ||
}, | ||
"extension": true, | ||
"outputDir": "glue_jupyterlab/labextension", | ||
"sharedPackages": { | ||
"yjs": { | ||
"bundled": false, | ||
"singleton": true | ||
}, | ||
"yjs-widgets": { | ||
"bundled": false, | ||
"singleton": true | ||
} | ||
"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 | ||
} | ||
} | ||
} | ||
} | ||
} |