-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 2.38 KB
/
package.json
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
65
66
{
"name": "jupyter-chat-root",
"version": "0.7.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": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-chat.git"
},
"workspaces": [
"packages/*",
"python/jupyterlab-chat",
"docs/jupyter-chat-example"
],
"scripts": {
"build": "lerna run build --stream --scope jupyterlab-chat-extension --include-filtered-dependencies",
"build:core": "lerna run build --stream --scope \"@jupyter/chat\"",
"build:lite-docs": "lerna run build --stream --scope jupyter-chat-example --include-filtered-dependencies",
"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": "jlpm build && lerna run dev-install",
"eslint": "eslint . --ext .ts,.tsx --cache --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md,.yml}\"",
"lint:check": "jlpm run prettier:check && jlpm run eslint:check",
"lint": "jlpm run prettier && jlpm run eslint && jlpm stylelint",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"**/style/**/*.css\"",
"watch": "lerna run watch --parallel --stream",
"test": "lerna run test"
},
"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",
"lerna": "^6.4.1",
"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": "[email protected]"
}