-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
105 lines (105 loc) · 3.25 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "lexcube",
"version": "0.4.23",
"description": "Lexcube: 3D Data Cube Visualization in Jupyter Notebooks",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/msoechting/lexcube",
"bugs": {
"url": "https://github.com/msoechting/lexcube/issues"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "Maximilian Söchting",
"email": "maximilian.soechting@uni-leipzig.de"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/msoechting/lexcube.git"
},
"scripts": {
"build": "npm run build:lib && npm run build:nbextension && npm run build:labextension:dev",
"build:prod": "npm run build:lib && npm run build:nbextension && npm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:nbextension": "webpack",
"clean": "npm run clean:lib && npm run clean:nbextension && npm run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf lexcube/labextension",
"clean:nbextension": "rimraf lexcube/nbextension/static/index.js",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"prepack": "npm run build:lib",
"test": "jest",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch --mode=development",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2.0.0 || ^3.0.0 || ^4.0.0 || ^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@jupyterlab/builder": "^4.0.9",
"@phosphor/application": "^1.6.0",
"@phosphor/widgets": "^1.6.0",
"@types/jest": "^26.0.0",
"@types/node": "^20.11.19",
"@types/qrcode": "^1.5.4",
"@types/three": "=0.144.0",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"acorn": "^7.2.0",
"css-loader": "^6.8.1",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^7.0.0",
"html-loader": "^4.2.0",
"html-to-image": "^1.11.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.1.2",
"mkdirp": "^0.5.1",
"nouislider": "^15.6.1",
"npm-run-all": "^4.1.3",
"numcodecs": "file:src/lexcube-client/deps/numcodecs-0.2.5.tgz",
"polyfill-array-includes": "^2.0.0",
"prettier": "^2.0.5",
"qrcode": "^1.5.3",
"rimraf": "^2.6.2",
"socket.io-client": "^4.5.3",
"source-map-loader": "^1.1.3",
"style-loader": "^1.0.0",
"three": "=0.163.0",
"ts-jest": "^29.1.2",
"ts-loader": "^8.0.0",
"typescript": "~5.3.3",
"webpack": "^5.61.0",
"webpack-cli": "^4.0.0"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "lexcube/labextension/",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}