@ndmspc/ndmvr 0.20220401.0 → 0.20230117.0
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/ndmvr.es.js +6256 -0
- package/dist/ndmvr.umd.js +305 -0
- package/package.json +32 -52
- package/dist/index.js +0 -4483
- package/dist/index.js.map +0 -1
- package/dist/index.modern.js +0 -4473
- package/dist/index.modern.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,62 +1,42 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ndmspc/ndmvr",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
5
|
-
"author": "",
|
|
3
|
+
"version": "0.20230117.0",
|
|
4
|
+
"description": "React components ndmspc core",
|
|
5
|
+
"author": "Martin Vala",
|
|
6
|
+
"repository": "https://gitlab.com/ndmspc/ndmvr.git",
|
|
6
7
|
"license": "MIT",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
"keywords": [],
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md"
|
|
12
|
+
],
|
|
13
|
+
"main": "./dist/ndmvr.umd.js",
|
|
14
|
+
"module": "./dist/ndmvr.es.js",
|
|
15
|
+
"exports": {
|
|
16
|
+
".": {
|
|
17
|
+
"import": "./dist/ndmvr.es.js",
|
|
18
|
+
"require": "./dist/ndmvr.umd.js"
|
|
19
|
+
}
|
|
13
20
|
},
|
|
14
21
|
"scripts": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"test:build": "run-s build",
|
|
20
|
-
"test:lint": "eslint .",
|
|
21
|
-
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
|
|
22
|
-
"test:watch": "react-scripts test --env=jsdom",
|
|
23
|
-
"predeploy": "cd example && npm install --force && npm run build",
|
|
24
|
-
"reset": "rm -rf node_modules example/node_modules package-lock.json example/package-lock.json && npm i && npm run predeploy",
|
|
25
|
-
"example": "cd example && npm start",
|
|
26
|
-
"dev": "run-p start example"
|
|
22
|
+
"dev": "vite",
|
|
23
|
+
"build": "vite build",
|
|
24
|
+
"build-app": "vite build -c vite.config.app.js",
|
|
25
|
+
"preview": "vite -c vite.config.app.js"
|
|
27
26
|
},
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@ndmspc/react-ndmspc-core": "^0.20221219.7",
|
|
29
|
+
"aframe": "^1.3.0",
|
|
30
|
+
"styled-components": "^5.3.6",
|
|
31
|
+
"three": "^0.147.0"
|
|
31
32
|
},
|
|
32
33
|
"devDependencies": {
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"eslint-plugin-import": "^2.23.4",
|
|
41
|
-
"eslint-plugin-node": "^11.1.0",
|
|
42
|
-
"eslint-plugin-prettier": "^3.4.0",
|
|
43
|
-
"eslint-plugin-promise": "^5.1.0",
|
|
44
|
-
"eslint-plugin-react": "^7.24.0",
|
|
45
|
-
"microbundle-crl": "^0.13.10",
|
|
46
|
-
"npm-run-all": "^4.1.5",
|
|
47
|
-
"prettier": "^2.3.0",
|
|
48
|
-
"react": "^17.0.2",
|
|
49
|
-
"react-dom": "^17.0.2",
|
|
50
|
-
"react-scripts": "^4.0.3"
|
|
51
|
-
},
|
|
52
|
-
"files": [
|
|
53
|
-
"dist"
|
|
54
|
-
],
|
|
55
|
-
"dependencies": {
|
|
56
|
-
"@ndmspc/react-jsroot": "^0.1.1",
|
|
57
|
-
"aframe": "^1.0.4",
|
|
58
|
-
"aframe-htmlembed-component": "^1.0.0",
|
|
59
|
-
"rasterizehtml": "^1.3.0",
|
|
60
|
-
"rxjs": "^6.6.3"
|
|
34
|
+
"@patternfly/patternfly": "^4.222.4",
|
|
35
|
+
"@patternfly/react-core": "^4.267.6",
|
|
36
|
+
"react": "^18.2.0",
|
|
37
|
+
"react-dom": "^18.2.0",
|
|
38
|
+
"react-router-dom": "^6.5.0",
|
|
39
|
+
"vite": "^4.0.0",
|
|
40
|
+
"@vitejs/plugin-react": "^3.0.0"
|
|
61
41
|
}
|
|
62
42
|
}
|