-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.12 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
{
"name": "setmlvis",
"version": "0.5.0",
"description": "A new visualization method for comparing different models for bounding box detection.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com/VisDunneRight/setmlvis",
"bugs": {
"url": "https://github.com/VisDunneRight/setmlvis/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Tarik Crnovrsanin",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/VisDunneRight/setmlvis"
},
"scripts": {
"build": "webpack --mode=development && jupyter labextension build --development=True .",
"build:prod": "webpack --mode=production && jupyter labextension build .",
"clean": "npm run clean:lib && npm run clean:nbextension && npm run clean:labextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf setmlvis/labextension",
"clean:nbextension": "rimraf setmlvis/nbextension/static/index.js",
"fix": "prettier --plugin-search-dir . --write src && eslint . --ext .ts,.tsx,.svelte --fix",
"check": "prettier --plugin-search-dir . --check src && eslint . --ext .ts,.tsx,.svelte && svelte-check",
"prepack": "npm run build:prod",
"watch": "npm run watch:nbextension",
"watch:nbextension": "webpack --watch --mode=development",
"watch:labextension": "jupyter labextension watch .",
"test": "uvu -r tsm tests"
},
"dependencies": {
"@jupyter-widgets/base": "^1.1.10 || ^2 || ^3 || ^4 || ^5 || ^6",
"d3": "^7.4.4",
"simple-statistics": "^7.8.0",
"svelte-check": "^3.4.6",
"svelte-material-ui": "^7.0.0-beta.0",
"svg-pan-zoom": "^3.6.1",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@jupyterlab/builder": "^3 || ^4",
"@lumino/application": "^1.6.0",
"@lumino/widgets": "^1.6.0",
"@rgossiaux/svelte-headlessui": "^2.0.0",
"@tsconfig/svelte": "^3.0.0",
"@types/d3": "^7.4.0",
"@types/svelte-range-slider-pips": "^2.0.0",
"@types/webpack-env": "^1.13.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"acorn": "^7.2.0",
"css-loader": "^6.7.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.32.3",
"fs-extra": "^7.0.0",
"identity-obj-proxy": "^3.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"rimraf": "^2.6.2",
"source-map-loader": "^1.1.3",
"style-loader": "^3.0.0",
"svelte": "^3.54.0",
"svelte-loader": "^3.1.5",
"svelte-preprocess": "5.0.0",
"svelte-range-slider-pips": "^2.1.1",
"ts-loader": "^9.0.0",
"tslib": "^2.4.1",
"tsm": "^2.2.1",
"typescript": "^4.9.3",
"uvu": "^0.5.3",
"webpack": "^5.88.2",
"webpack-cli": "^4.0.0"
},
"jupyterlab": {
"extension": true,
"outputDir": "setmlvis/labextension/"
}
}