@blendviewer/vision-scope 0.1.0 → 0.1.1
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/README.md +18 -16
- package/dist/index.js +176708 -125370
- package/dist/styles/document.css +15 -0
- package/dist/vision-scope.css +1 -1
- package/package.json +19 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blendviewer/vision-scope",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Universal file viewer SDK — detect, route, and render images, media, code, documents, archives, and 3D spatial assets",
|
|
5
5
|
"homepage": "https://vision-scope.blendviewer.com",
|
|
6
6
|
"publishConfig": {
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"cad",
|
|
27
27
|
"dxf",
|
|
28
28
|
"pdf",
|
|
29
|
-
"docx",
|
|
30
29
|
"pptx",
|
|
31
30
|
"xlsx",
|
|
32
31
|
"csv",
|
|
@@ -53,28 +52,42 @@
|
|
|
53
52
|
"scripts": {
|
|
54
53
|
"predev": "node scripts/sync-nestcad-loaders.js",
|
|
55
54
|
"dev": "vite",
|
|
55
|
+
"dev:playground": "PLAYGROUND_DEV=true vite",
|
|
56
56
|
"prebuild": "node scripts/sync-nestcad-loaders.js",
|
|
57
57
|
"build": "BUILD_LIB=true vite build",
|
|
58
58
|
"build:playground": "pnpm run build && node scripts/prepare-playground.js",
|
|
59
59
|
"preview:playground": "pnpm run build:playground && npx --yes serve playground -l 5191",
|
|
60
60
|
"preview:prod": "pnpm run build && VISION_SCOPE_USE_DIST=true vite",
|
|
61
61
|
"preview:vision-scope": "pnpm run preview:prod",
|
|
62
|
-
"type-check": "tsc --noEmit -p tsconfig.json",
|
|
62
|
+
"type-check": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.playground.json",
|
|
63
63
|
"preview": "vite preview"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@aiden0z/pptx-renderer": "^1.2.0",
|
|
67
|
+
"@blendviewer/ui": "workspace:*",
|
|
67
68
|
"@nestcad/viewer": "workspace:*",
|
|
69
|
+
"@types/react": "^19.0.2",
|
|
70
|
+
"@types/react-dom": "^19.0.2",
|
|
71
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
72
|
+
"autoprefixer": "^10.4.20",
|
|
68
73
|
"jszip": "^3.10.1",
|
|
74
|
+
"lucide-react": "^0.557.0",
|
|
69
75
|
"marked": "^15.0.6",
|
|
70
76
|
"pdfjs-dist": "^4.10.38",
|
|
71
77
|
"plyr": "^3.7.8",
|
|
78
|
+
"postcss": "^8.4.49",
|
|
72
79
|
"prismjs": "^1.29.0",
|
|
80
|
+
"react": "^19.2.0",
|
|
81
|
+
"react-dom": "^19.2.0",
|
|
82
|
+
"tailwindcss": "^3.4.16",
|
|
83
|
+
"tailwindcss-animate": "^1.0.7",
|
|
73
84
|
"three": "^0.170.0",
|
|
74
|
-
"x-data-spreadsheet": "^1.1.9",
|
|
75
|
-
"xlsx-js-style": "^1.2.0",
|
|
76
85
|
"typescript": "^5.7.2",
|
|
77
86
|
"vite": "^6.0.3",
|
|
78
|
-
"vite-plugin-static-copy": "^2.2.0"
|
|
87
|
+
"vite-plugin-static-copy": "^2.2.0",
|
|
88
|
+
"web-ifc": "0.0.39",
|
|
89
|
+
"web-ifc-three": "0.0.126",
|
|
90
|
+
"x-data-spreadsheet": "^1.1.9",
|
|
91
|
+
"xlsx-js-style": "^1.2.0"
|
|
79
92
|
}
|
|
80
93
|
}
|