-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from brichet/monorepo
Split the project in two packages: UI (npm) and jupyterlab extension
- Loading branch information
Showing
80 changed files
with
6,290 additions
and
1,917 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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"useWorkspaces": true, | ||
"version": "0.1.0", | ||
"npmClient": "jlpm", | ||
"useNx": true | ||
} |
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,7 +1,8 @@ | ||
{ | ||
"name": "@jupyter/chat", | ||
"name": "@jupyter/chat-root", | ||
"version": "0.1.0", | ||
"description": "A chat extension for Jupyterlab", | ||
"description": "A chat package for Jupyterlab extension", | ||
"private": true, | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
|
@@ -16,108 +17,30 @@ | |
"name": "Jupyter Development Team", | ||
"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}", | ||
"src/**/*.{ts,tsx}", | ||
"schema/*.json" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"style": "style/index.css", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/QuantStack/jupyter-chat.git" | ||
}, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"scripts": { | ||
"build": "jlpm build:lib", | ||
"build:prod": "jlpm clean && jlpm build:lib:prod", | ||
"build:lib": "tsc --sourceMap", | ||
"build:lib:prod": "tsc", | ||
"clean": "jlpm clean:lib", | ||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo", | ||
"clean:lintcache": "rimraf .eslintcache .stylelintcache", | ||
"clean:all": "jlpm clean:lib && 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:src": "tsc -w --sourceMap" | ||
}, | ||
"dependencies": { | ||
"@emotion/react": "^11.10.5", | ||
"@emotion/styled": "^11.10.5", | ||
"@jupyterlab/apputils": "^4.0.5", | ||
"@jupyterlab/coreutils": "^6.0.5", | ||
"@jupyterlab/fileeditor": "^4.0.5", | ||
"@jupyterlab/rendermime": "^4.0.5", | ||
"@jupyterlab/services": "^7.0.5", | ||
"@jupyterlab/ui-components": "^4.0.5", | ||
"@lumino/coreutils": "^2.1.2", | ||
"@lumino/disposable": "^2.1.2", | ||
"@lumino/signaling": "^2.1.2", | ||
"@mui/icons-material": "^5.11.0", | ||
"@mui/material": "^5.11.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
"build": "lerna run build --stream", | ||
"build:core": "lerna run build --stream --scope \"@jupyter-ai/core\"", | ||
"build:prod": "lerna run build:prod --stream", | ||
"clean": "lerna run clean", | ||
"clean:all": "lerna run clean:all", | ||
"dev": "jupyter lab --config playground/config.py", | ||
"dev-install": "lerna run dev-install --stream", | ||
"dev-uninstall": "lerna run dev-uninstall --stream", | ||
"install-from-src": "lerna run install-from-src --stream", | ||
"lint": "jlpm && lerna run prettier && lerna run eslint", | ||
"lint:check": "lerna run prettier:check && lerna run eslint:check", | ||
"watch": "lerna run watch --parallel --stream", | ||
"test": "lerna run test" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/builder": "^4.0.0", | ||
"@jupyterlab/testutils": "^4.0.0", | ||
"@types/jest": "^29.2.0", | ||
"@types/json-schema": "^7.0.11", | ||
"@types/react": "^18.2.0", | ||
"@types/react-addons-linked-state-mixin": "^0.14.22", | ||
"@types/react-dom": "^18.2.0", | ||
"@typescript-eslint/eslint-plugin": "^6.1.0", | ||
"@typescript-eslint/parser": "^6.1.0", | ||
"css-loader": "^6.7.1", | ||
"eslint": "^8.36.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"jest": "^29.2.0", | ||
"mkdirp": "^1.0.3", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.0.0", | ||
"rimraf": "^5.0.1", | ||
"source-map-loader": "^1.0.2", | ||
"style-loader": "^3.3.1", | ||
"stylelint": "^15.10.1", | ||
"stylelint-config-recommended": "^13.0.0", | ||
"stylelint-config-standard": "^34.0.0", | ||
"stylelint-csstree-validator": "^3.0.0", | ||
"stylelint-prettier": "^4.0.0", | ||
"typescript": "~5.0.2", | ||
"yjs": "^13.5.0" | ||
}, | ||
"sideEffects": [ | ||
"style/*.css", | ||
"style/index.js" | ||
], | ||
"styleModule": "style/index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"jupyterlab": { | ||
"discovery": { | ||
"server": { | ||
"managers": [ | ||
"pip" | ||
], | ||
"base": { | ||
"name": "jupyter_chat" | ||
} | ||
} | ||
}, | ||
"extension": false, | ||
"schemaDir": "schema" | ||
"lerna": "^6.4.1" | ||
}, | ||
"eslintIgnore": [ | ||
"node_modules", | ||
|
Oops, something went wrong.