-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 3.24 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
{
"name": "@tiledb-inc/pybabylonjs",
"version": "1.0.6",
"description": "BabylonJS widget",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css",
"style/*.css",
"style/index.js"
],
"author": {
"name": "TileDB",
"email": "[email protected]"
},
"homepage": "https://github.com/TileDB-Inc/TileDB-PyBabylonJS",
"bugs": {
"url": "https://github.com/TileDB-Inc/TileDB-PyBabylonJS/issues"
},
"license": "MIT",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TileDB-Inc/TileDB-PyBabylonJS"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:dist": "NODE_OPTIONS=--max-old-space-size=4096 webpack --mode=production",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension && jlpm run build:dist",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf pybabylonjs/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:nbextension": "rimraf pybabylonjs/nbextension/static/index.js",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx",
"prepack": "yarn run build:lib",
"test": "echo test",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"watch:lib": "tsc -w",
"watch:nbextension": "NODE_OPTIONS=--max-old-space-size=4096 webpack --watch --mode=development"
},
"dependencies": {
"@jupyter-widgets/base": "^2 || ^3 || ^4 || ^5 || ^6",
"@jupyterlab/application": "^3 || ^4",
"@tiledb-inc/viz-core": "^1.0.3-alpha.8"
},
"devDependencies": {
"@jupyterlab/builder": "^3 || ^4",
"@types/node": "^10.11.6",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"crypto": "1.0.1",
"css-loader": "^6.3.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"expect.js": "^0.3.1",
"fs-extra": "^7.0.0",
"git-tag-version": "^1.3.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"svg-url-loader": "^7.1.1",
"ts-loader": "^9.2.5",
"typescript": "~5.1.6",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4"
},
"resolutions": {
"capnp-ts": "0.4.0"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "pybabylonjs/labextension",
"webpackConfig": "./webpack.lab.config.js",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
},
"styleModule": "style/index.js"
}