-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
89 lines (89 loc) · 2.75 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jupyterlab-prodigy",
"version": "4.0.0",
"description&q
8489
uot;: "A JupyterLab extension for annotating machine learning training sets using Prodigy",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"prodigy",
"annotation"
],
"homepage": "https://github.com/explosion/jupyterlab-prodigy",
"bugs": {
"url": "https://github.com/explosion/jupyterlab-prodigy/issues"
},
"license": "MIT",
"author": "Explosion AI",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "git+https://github.com/explosion/jupyterlab-prodigy.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab-prodigy/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^3.0.11",
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/launcher": "^3.0.9",
"@jupyterlab/settingregistry": "^3.0.6",
"@lumino/messaging": "^1.4.1",
"@lumino/widgets": "^1.13.0"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0-rc.13",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"typescript": "~4.1.3",
"husky": "^2.7.0",
"lint-staged": "^8.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{!(package),src/**,!(lib)/**}{.js,.jsx,.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab-prodigy/labextension"
}
}