-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.69 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
{
"name": "@platiagro/jupyterlab-extension",
"version": "0.2.0",
"description": "A JupyterLab extension that connects to PlatIAgro.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/platiagro/jupyterlab-extension",
"bugs": {
"url": "https://github.com/platiagro/jupyterlab-extension/issues"
},
"license": "Apache-2.0",
"author": "Fabio Beranizo Fontes Lopes",
"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}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/platiagro/jupyterlab-extension.git"
},
"scripts": {
"build": "jlpm run build:lib",
"build:labextension": "cd jupyterlab_extension && rimraf labextension && mkdirp labextension && cd labextension && npm pack ../..",
"build:lib": "tsc",
"build:all": "jlpm run build:labextension",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab_extension/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"prepare": "jlpm run clean && jlpm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.11",
"@jupyterlab/apputils": "https://github.com/platiagro/jupyterlab/raw/v0.2.0-jupyterlab-v3.0.16/packages/apputils/jupyterlab-apputils-v3.0.9.tgz",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/docregistry": "^3.0.11",
"@jupyterlab/mainmenu": "^3.0.9",
"@jupyterlab/notebook": "^3.0.11",
"@jupyterlab/services": "https://github.com/platiagro/jupyterlab/raw/v0.2.0-jupyterlab-v3.0.16/packages/services/jupyterlab-services-v6.0.9.tgz",
"@jupyterlab/ui-components": "^3.0.7",
"@lumino/disposable": "^1.7.0",
"@lumino/widgets": "^1.23.0"
},
"devDependencies": {
"@types/node": "^16.3.1",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mkdirp": "^1.0.4",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"typescript": "~4.3.5"
},
"sideEffects": [
"style/**/*"
],
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_extension"
}
}
},
"extension": true
},
"publishConfig": {
"access": "public"
}
}