-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 3.16 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jupyter-chat-root",
"version": "0.21.1",
"description": "A chat package for Jupyterlab extension",
"private": true,
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyter-chat",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-chat/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Jupyter Development Team",
"email": "jupyter@googlegroups.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-chat.git"
},
"workspaces": [
"packages/*",
"docs/jupyter-chat-example"
],
"scripts": {
"build": "jlpm workspace @jupyter/chat run build && jlpm workspace jupyterlab-chat run build && jlpm workspace jupyterlab-chat-extension run build",
"build:core": "jlpm workspace @jupyter/chat run build",
"build:lite-docs": "jlpm workspace @jupyter/chat run build && jlpm workspace jupyter-chat-example run build",
"build:prod": "jlpm workspace @jupyter/chat run build:prod && jlpm workspace jupyterlab-chat run build:prod && jlpm workspace jupyterlab-chat-extension run build:prod && jlpm workspace jupyter-chat-example run build:prod",
"clean": "jlpm workspace @jupyter/chat run clean && jlpm workspace jupyterlab-chat run clean && jlpm workspace jupyterlab-chat-extension run clean && jlpm workspace jupyter-chat-example run clean",
"clean:all": "jlpm workspace @jupyter/chat run clean:all && jlpm workspace jupyterlab-chat run clean:all && jlpm workspace jupyterlab-chat-extension run clean:all && jlpm workspace jupyter-chat-example run clean:all",
"dev": "jupyter lab --config playground/config.py",
"eslint": "eslint . --ext .ts,.tsx --cache --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm workspace @jupyter/chat run install:extension && jlpm workspace jupyterlab-chat run install:extension && jlpm workspace jupyterlab-chat-extension run install:extension && jlpm workspace jupyter-chat-example run install:extension",
"lint:check": "jlpm run prettier:check && jlpm run eslint:check",
"lint": "jlpm run prettier && jlpm run eslint && jlpm stylelint",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"**/style/**/*.css\"",
"test": "jlpm workspace @jupyter/chat run test && jlpm workspace jupyterlab-chat run test",
"watch": "jlpm workspace jupyterlab-chat-extension run watch"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"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"
},
"packageManager": "yarn@3.5.0"
}