dotdata_widgets 1.5.0-b2.dev3 → 1.5.0-b2.dev30.g0d73a07e
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.
- package/dist/index.js +19 -19
- package/package.json +18 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dotdata_widgets",
|
|
3
|
-
"version": "1.5.0-b2.
|
|
3
|
+
"version": "1.5.0-b2.dev30.g0d73a07e",
|
|
4
4
|
"description": "A dotdata widget",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dotdata",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"lint:check": "eslint . --ext .ts,.tsx",
|
|
44
44
|
"prepack": "yarn build:package",
|
|
45
45
|
"npm-publish": "npm publish",
|
|
46
|
-
"test": "yarn build:test &&
|
|
47
|
-
"test:watch": "concurrently
|
|
46
|
+
"test": "yarn build:test && yarn run -T test apps/dotdata_widgets",
|
|
47
|
+
"test:watch": "yarn run -T concurrently \"yarn build:test -w\" \"yarn run -T test:watch apps/dotdata_widgets\"",
|
|
48
48
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
49
49
|
"watch": "yarn run build:lib && npm-run-all -p 'watch:*'",
|
|
50
|
-
"watch:lib": "concurrently \"tsc -b -w\" \"tsc-alias -w\"",
|
|
50
|
+
"watch:lib": "yarn run -T concurrently \"tsc -b -w\" \"tsc-alias -w\"",
|
|
51
51
|
"watch:labextension": "jupyter labextension build --development True . && jupyter labextension watch ."
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
@@ -72,17 +72,18 @@
|
|
|
72
72
|
"@mui/material": "^5.15.14",
|
|
73
73
|
"@mui/system": "^5.15.14",
|
|
74
74
|
"lodash": "^4.17.21",
|
|
75
|
-
"react": "^18.2.0",
|
|
76
|
-
"react-dom": "^18.2.0",
|
|
77
75
|
"ts-pattern": "^5.2.0"
|
|
78
76
|
},
|
|
77
|
+
"peerDependencies": {
|
|
78
|
+
"react": "^18.2.0",
|
|
79
|
+
"react-dom": "^18.2.0"
|
|
80
|
+
},
|
|
79
81
|
"devDependencies": {
|
|
80
82
|
"@dotdata/typescript-config": "workspace:^",
|
|
81
83
|
"@jupyter-widgets/base-manager": "^1.0.7",
|
|
82
84
|
"@jupyterlab/builder": "^3.6.1",
|
|
83
85
|
"@types/webpack-env": "^1.18.0",
|
|
84
86
|
"acorn": "^8.8.2",
|
|
85
|
-
"concurrently": "^8.2.2",
|
|
86
87
|
"css-loader": "^6.7.3",
|
|
87
88
|
"file-loader": "^6.2.0",
|
|
88
89
|
"fs-extra": "^11.1.0",
|
|
@@ -90,13 +91,14 @@
|
|
|
90
91
|
"identity-obj-proxy": "^3.0.0",
|
|
91
92
|
"mkdirp": "^2.1.3",
|
|
92
93
|
"npm-run-all": "^4.1.5",
|
|
94
|
+
"react": "^18.2.0",
|
|
95
|
+
"react-dom": "^18.2.0",
|
|
93
96
|
"source-map-loader": "^4.0.1",
|
|
94
97
|
"style-loader": "^3.3.1",
|
|
95
98
|
"ts-loader": "^9.4.2",
|
|
96
99
|
"tsc-alias": "^1.8.8",
|
|
97
100
|
"tsconfig-paths-webpack-plugin": "^4.0.0",
|
|
98
101
|
"typescript": "^5.6.2",
|
|
99
|
-
"vitest": "^1.6.1",
|
|
100
102
|
"webpack": "^5.69.1",
|
|
101
103
|
"webpack-cli": "^5.0.1"
|
|
102
104
|
},
|
|
@@ -108,8 +110,14 @@
|
|
|
108
110
|
"bundled": false,
|
|
109
111
|
"singleton": true
|
|
110
112
|
},
|
|
111
|
-
"react":
|
|
112
|
-
|
|
113
|
+
"react": {
|
|
114
|
+
"bundled": false,
|
|
115
|
+
"singleton": true
|
|
116
|
+
},
|
|
117
|
+
"react-dom": {
|
|
118
|
+
"bundled": false,
|
|
119
|
+
"singleton": true
|
|
120
|
+
}
|
|
113
121
|
}
|
|
114
122
|
}
|
|
115
123
|
}
|