dotdata_widgets 0.0.0-a1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.js +128 -0
  2. package/lib/index.js +3 -0
  3. package/package.json +104 -0
package/lib/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * from './version';
2
+ export * from './widgets';
3
+ //# sourceMappingURL=index.js.map
package/package.json ADDED
@@ -0,0 +1,104 @@
1
+ {
2
+ "name": "dotdata_widgets",
3
+ "version": "0.0.0a1",
4
+ "description": "A dotdata widget",
5
+ "keywords": [
6
+ "dotdata",
7
+ "widgets",
8
+ "jupyter",
9
+ "jupyterlab",
10
+ "jupyterlab-extension"
11
+ ],
12
+ "files": [
13
+ "dist/*.js"
14
+ ],
15
+ "homepage": "https://github.com/ramencloud/dotdata-core",
16
+ "bugs": {
17
+ "url": "https://github.com/ramencloud/dotdata-core/issues"
18
+ },
19
+ "author": {
20
+ "name": "dotdata",
21
+ "email": "dotdata@dotdata.com"
22
+ },
23
+ "main": "lib/index.js",
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/ramencloud/dotdata-core"
27
+ },
28
+ "scripts": {
29
+ "build": "npm run build:nbextension && npm run build:labextension && npm run build:package",
30
+ "build:labextension": "npm run build:lib && jupyter labextension build . && touch dotdata_widgets/labextension/static/__init__.py && touch dotdata_widgets/labextension/__init__.py",
31
+ "build:nbextension": "tsc -b ../../packages && webpack --mode=production --config webpack.config.js --config-name notebook-package notebook-entry-file",
32
+ "build:package": "tsc -b ../../packages && webpack --mode=production --config webpack.config.js --config-name npm-package",
33
+ "build:lib": "tsc --build && tsc-alias",
34
+ "build:test": "tsc --build tsconfig.test.json",
35
+ "clean": "npm run clean:lib && npm run clean:nbextension && npm run clean:labextension",
36
+ "clean:lib": "yarn run -T rimraf lib && yarn run -T rimraf tsconfig.tsbuildinfo && yarn run -T rimraf dist",
37
+ "clean:labextension": "yarn run -T rimraf dotdata_widgets/labextension",
38
+ "clean:nbextension": "yarn run -T rimraf dotdata_widgets/nbextension/*.js.* && yarn run -T rimraf dotdata_widgets/nbextension/*.js",
39
+ "lint": "eslint . --ext .ts,.tsx --fix",
40
+ "lint:check": "eslint . --ext .ts,.tsx",
41
+ "prepack": "yarn build:package",
42
+ "publish": "npm publish",
43
+ "test": "yarn build:test && vitest run",
44
+ "test:watch": "concurrently --hide \"yarn build:test -w\" --handle-input --raw \"vitest watch\" ",
45
+ "format": "prettier --write \"src/**/*.ts\"",
46
+ "watch": "npm run build:lib && npm-run-all -p 'watch:*'",
47
+ "watch:lib": "concurrently \"tsc -b -w\" \"tsc-alias -w\"",
48
+ "watch:labextension": "jupyter labextension build --development True . && jupyter labextension watch .",
49
+ "storybook": "storybook dev -p 6006",
50
+ "build-storybook": "storybook build"
51
+ },
52
+ "dependencies": {
53
+ "@dotdata/components": "workspace:^",
54
+ "@dotdata/css": "workspace:^",
55
+ "@dotdata/fixtures": "workspace:^",
56
+ "@dotdata/utils": "workspace:^",
57
+ "@emotion/react": "*",
58
+ "@emotion/styled": "*",
59
+ "@jupyter-widgets/base": "^6.0.2",
60
+ "@mui/icons-material": "^5.11.9",
61
+ "@mui/material": "*",
62
+ "@mui/system": "*",
63
+ "jupyterlab-plotly": "^5.19.0",
64
+ "lodash": "^4.17.21",
65
+ "react": "*",
66
+ "react-dom": "*",
67
+ "ts-pattern": "^4.2.2"
68
+ },
69
+ "devDependencies": {
70
+ "@jupyter-widgets/base-manager": "^1.0.7",
71
+ "@jupyterlab/builder": "^3.6.1",
72
+ "@types/webpack-env": "^1.18.0",
73
+ "acorn": "^8.8.2",
74
+ "concurrently": "^8.2.2",
75
+ "css-loader": "^6.7.3",
76
+ "file-loader": "^6.2.0",
77
+ "fs-extra": "^11.1.0",
78
+ "happy-dom": "*",
79
+ "identity-obj-proxy": "^3.0.0",
80
+ "mkdirp": "^2.1.3",
81
+ "npm-run-all": "^4.1.5",
82
+ "source-map-loader": "^4.0.1",
83
+ "style-loader": "^3.3.1",
84
+ "ts-loader": "^9.4.2",
85
+ "tsc-alias": "^1.8.8",
86
+ "tsconfig-paths-webpack-plugin": "^4.0.0",
87
+ "typescript": "*",
88
+ "vitest": "*",
89
+ "webpack": "^5.69.1",
90
+ "webpack-cli": "^5.0.1"
91
+ },
92
+ "jupyterlab": {
93
+ "extension": "lib/plugin.js",
94
+ "outputDir": "dotdata_widgets/labextension/",
95
+ "sharedPackages": {
96
+ "@jupyter-widgets/base": {
97
+ "bundled": false,
98
+ "singleton": true
99
+ },
100
+ "react": false,
101
+ "react-dom": false
102
+ }
103
+ }
104
+ }