@files-preview-app/preview-file 1.3.14 → 1.3.16
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/package.json +180 -169
package/package.json
CHANGED
|
@@ -1,169 +1,180 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@files-preview-app/preview-file",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "Universal file preview library for Web, React, Angular, and Vue. 100% client-side with zero cloud dependency. Preview PDF, Word, Excel, PowerPoint, CSV, ZIP, Markdown, 3D Models (STL/OBJ), Images, Video, Audio, and Code with built-in toolbar.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"file-preview",
|
|
7
|
-
"preview-file",
|
|
8
|
-
"file-viewer",
|
|
9
|
-
"document-viewer",
|
|
10
|
-
"document-preview",
|
|
11
|
-
"doc-viewer",
|
|
12
|
-
"react-file-viewer",
|
|
13
|
-
"react-doc-viewer",
|
|
14
|
-
"vue-file-preview",
|
|
15
|
-
"vue-doc-viewer",
|
|
16
|
-
"ngx-doc-viewer",
|
|
17
|
-
"angular-file-viewer",
|
|
18
|
-
"pdf-viewer",
|
|
19
|
-
"pdf-preview",
|
|
20
|
-
"pdfjs",
|
|
21
|
-
"docx-preview",
|
|
22
|
-
"docx-viewer",
|
|
23
|
-
"word-viewer",
|
|
24
|
-
"office-viewer",
|
|
25
|
-
"excel-preview",
|
|
26
|
-
"excel-viewer",
|
|
27
|
-
"xlsx-viewer",
|
|
28
|
-
"spreadsheet-viewer",
|
|
29
|
-
"pptx-preview",
|
|
30
|
-
"pptx-viewer",
|
|
31
|
-
"powerpoint-viewer",
|
|
32
|
-
"presentation-viewer",
|
|
33
|
-
"csv-viewer",
|
|
34
|
-
"tsv-viewer",
|
|
35
|
-
"zip-viewer",
|
|
36
|
-
"zip-preview",
|
|
37
|
-
"archive-viewer",
|
|
38
|
-
"markdown-preview",
|
|
39
|
-
"markdown-viewer",
|
|
40
|
-
"3d-viewer",
|
|
41
|
-
"stl-viewer",
|
|
42
|
-
"obj-viewer",
|
|
43
|
-
"threejs-viewer",
|
|
44
|
-
"image-viewer",
|
|
45
|
-
"video-player",
|
|
46
|
-
"audio-player",
|
|
47
|
-
"code-viewer",
|
|
48
|
-
"syntax-highlighter",
|
|
49
|
-
"client-side-preview",
|
|
50
|
-
"offline-preview",
|
|
51
|
-
"react",
|
|
52
|
-
"vue",
|
|
53
|
-
"angular",
|
|
54
|
-
"nextjs",
|
|
55
|
-
"universal-preview"
|
|
56
|
-
],
|
|
57
|
-
"author": "Sumit Patel",
|
|
58
|
-
"license": "MIT",
|
|
59
|
-
"type": "module",
|
|
60
|
-
"main": "./dist/index.cjs",
|
|
61
|
-
"module": "./dist/index.js",
|
|
62
|
-
"types": "./dist/index.d.ts",
|
|
63
|
-
"exports": {
|
|
64
|
-
".": {
|
|
65
|
-
"types": "./dist/index.d.ts",
|
|
66
|
-
"import": "./dist/index.js",
|
|
67
|
-
"require": "./dist/index.cjs"
|
|
68
|
-
},
|
|
69
|
-
"./react": {
|
|
70
|
-
"types": "./dist/react.d.ts",
|
|
71
|
-
"import": "./dist/react.js",
|
|
72
|
-
"require": "./dist/react.cjs"
|
|
73
|
-
},
|
|
74
|
-
"./vue": {
|
|
75
|
-
"types": "./dist/vue.d.ts",
|
|
76
|
-
"import": "./dist/vue.js",
|
|
77
|
-
"require": "./dist/vue.cjs"
|
|
78
|
-
},
|
|
79
|
-
"./angular": {
|
|
80
|
-
"types": "./dist/angular.d.ts",
|
|
81
|
-
"import": "./dist/angular.js",
|
|
82
|
-
"require": "./dist/angular.cjs"
|
|
83
|
-
},
|
|
84
|
-
"./styles.css": "./dist/styles.css"
|
|
85
|
-
},
|
|
86
|
-
"files": [
|
|
87
|
-
"dist",
|
|
88
|
-
"README.md",
|
|
89
|
-
"LICENSE",
|
|
90
|
-
"THIRD_PARTY_LICENSES.md"
|
|
91
|
-
],
|
|
92
|
-
"publishConfig": {
|
|
93
|
-
"access": "public"
|
|
94
|
-
},
|
|
95
|
-
"repository": {
|
|
96
|
-
"type": "git",
|
|
97
|
-
"url": "git+https://github.com/patelsumit5192/preview-file.git"
|
|
98
|
-
},
|
|
99
|
-
"homepage": "https://github.com/patelsumit5192/preview-file#readme",
|
|
100
|
-
"bugs": {
|
|
101
|
-
"url": "https://github.com/patelsumit5192/preview-file/issues"
|
|
102
|
-
},
|
|
103
|
-
"scripts": {
|
|
104
|
-
"build": "tsup",
|
|
105
|
-
"dev": "tsup --watch",
|
|
106
|
-
"clean": "rimraf dist"
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
"
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
"@angular/
|
|
126
|
-
"
|
|
127
|
-
"react
|
|
128
|
-
"
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
"react
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
"
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
"@
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
"@
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"@
|
|
150
|
-
"@
|
|
151
|
-
"@patel.sumit51/
|
|
152
|
-
"@patel.sumit51/
|
|
153
|
-
"@patel.sumit51/plugin-
|
|
154
|
-
"@patel.sumit51/plugin-
|
|
155
|
-
"@patel.sumit51/plugin-
|
|
156
|
-
"@patel.sumit51/plugin-
|
|
157
|
-
"@patel.sumit51/
|
|
158
|
-
"@patel.sumit51/
|
|
159
|
-
"@
|
|
160
|
-
"@
|
|
161
|
-
"@
|
|
162
|
-
"
|
|
163
|
-
"
|
|
164
|
-
"
|
|
165
|
-
"
|
|
166
|
-
"
|
|
167
|
-
"
|
|
168
|
-
|
|
169
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@files-preview-app/preview-file",
|
|
3
|
+
"version": "1.3.16",
|
|
4
|
+
"description": "Universal file preview library for Web, React, Angular, and Vue. 100% client-side with zero cloud dependency. Preview PDF, Word, Excel, PowerPoint, CSV, ZIP, Markdown, 3D Models (STL/OBJ), Images, Video, Audio, and Code with built-in toolbar.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"file-preview",
|
|
7
|
+
"preview-file",
|
|
8
|
+
"file-viewer",
|
|
9
|
+
"document-viewer",
|
|
10
|
+
"document-preview",
|
|
11
|
+
"doc-viewer",
|
|
12
|
+
"react-file-viewer",
|
|
13
|
+
"react-doc-viewer",
|
|
14
|
+
"vue-file-preview",
|
|
15
|
+
"vue-doc-viewer",
|
|
16
|
+
"ngx-doc-viewer",
|
|
17
|
+
"angular-file-viewer",
|
|
18
|
+
"pdf-viewer",
|
|
19
|
+
"pdf-preview",
|
|
20
|
+
"pdfjs",
|
|
21
|
+
"docx-preview",
|
|
22
|
+
"docx-viewer",
|
|
23
|
+
"word-viewer",
|
|
24
|
+
"office-viewer",
|
|
25
|
+
"excel-preview",
|
|
26
|
+
"excel-viewer",
|
|
27
|
+
"xlsx-viewer",
|
|
28
|
+
"spreadsheet-viewer",
|
|
29
|
+
"pptx-preview",
|
|
30
|
+
"pptx-viewer",
|
|
31
|
+
"powerpoint-viewer",
|
|
32
|
+
"presentation-viewer",
|
|
33
|
+
"csv-viewer",
|
|
34
|
+
"tsv-viewer",
|
|
35
|
+
"zip-viewer",
|
|
36
|
+
"zip-preview",
|
|
37
|
+
"archive-viewer",
|
|
38
|
+
"markdown-preview",
|
|
39
|
+
"markdown-viewer",
|
|
40
|
+
"3d-viewer",
|
|
41
|
+
"stl-viewer",
|
|
42
|
+
"obj-viewer",
|
|
43
|
+
"threejs-viewer",
|
|
44
|
+
"image-viewer",
|
|
45
|
+
"video-player",
|
|
46
|
+
"audio-player",
|
|
47
|
+
"code-viewer",
|
|
48
|
+
"syntax-highlighter",
|
|
49
|
+
"client-side-preview",
|
|
50
|
+
"offline-preview",
|
|
51
|
+
"react",
|
|
52
|
+
"vue",
|
|
53
|
+
"angular",
|
|
54
|
+
"nextjs",
|
|
55
|
+
"universal-preview"
|
|
56
|
+
],
|
|
57
|
+
"author": "Sumit Patel",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"type": "module",
|
|
60
|
+
"main": "./dist/index.cjs",
|
|
61
|
+
"module": "./dist/index.js",
|
|
62
|
+
"types": "./dist/index.d.ts",
|
|
63
|
+
"exports": {
|
|
64
|
+
".": {
|
|
65
|
+
"types": "./dist/index.d.ts",
|
|
66
|
+
"import": "./dist/index.js",
|
|
67
|
+
"require": "./dist/index.cjs"
|
|
68
|
+
},
|
|
69
|
+
"./react": {
|
|
70
|
+
"types": "./dist/react.d.ts",
|
|
71
|
+
"import": "./dist/react.js",
|
|
72
|
+
"require": "./dist/react.cjs"
|
|
73
|
+
},
|
|
74
|
+
"./vue": {
|
|
75
|
+
"types": "./dist/vue.d.ts",
|
|
76
|
+
"import": "./dist/vue.js",
|
|
77
|
+
"require": "./dist/vue.cjs"
|
|
78
|
+
},
|
|
79
|
+
"./angular": {
|
|
80
|
+
"types": "./dist/angular.d.ts",
|
|
81
|
+
"import": "./dist/angular.js",
|
|
82
|
+
"require": "./dist/angular.cjs"
|
|
83
|
+
},
|
|
84
|
+
"./styles.css": "./dist/styles.css"
|
|
85
|
+
},
|
|
86
|
+
"files": [
|
|
87
|
+
"dist",
|
|
88
|
+
"README.md",
|
|
89
|
+
"LICENSE",
|
|
90
|
+
"THIRD_PARTY_LICENSES.md"
|
|
91
|
+
],
|
|
92
|
+
"publishConfig": {
|
|
93
|
+
"access": "public"
|
|
94
|
+
},
|
|
95
|
+
"repository": {
|
|
96
|
+
"type": "git",
|
|
97
|
+
"url": "git+https://github.com/patelsumit5192/preview-file.git"
|
|
98
|
+
},
|
|
99
|
+
"homepage": "https://github.com/patelsumit5192/preview-file#readme",
|
|
100
|
+
"bugs": {
|
|
101
|
+
"url": "https://github.com/patelsumit5192/preview-file/issues"
|
|
102
|
+
},
|
|
103
|
+
"scripts": {
|
|
104
|
+
"build": "tsup",
|
|
105
|
+
"dev": "tsup --watch",
|
|
106
|
+
"clean": "rimraf dist",
|
|
107
|
+
"prepublishOnly": "node ../../scripts/verify-sync.cjs"
|
|
108
|
+
},
|
|
109
|
+
"dependencies": {
|
|
110
|
+
"@panzoom/panzoom": "^4.6.0",
|
|
111
|
+
"dompurify": "^3.2.4",
|
|
112
|
+
"docx-preview": "^0.3.2",
|
|
113
|
+
"exceljs": "^4.4.0",
|
|
114
|
+
"fflate": "^0.8.3",
|
|
115
|
+
"highlight.js": "^11.9.0",
|
|
116
|
+
"marked": "^18.0.13",
|
|
117
|
+
"papaparse": "^5.4.1",
|
|
118
|
+
"pdfjs-dist": "^4.10.38",
|
|
119
|
+
"pptx-browser": "^4.1.5",
|
|
120
|
+
"rtf.js": "^3.0.9",
|
|
121
|
+
"three": "^0.186.0",
|
|
122
|
+
"xlsx": "^0.18.5"
|
|
123
|
+
},
|
|
124
|
+
"peerDependencies": {
|
|
125
|
+
"@angular/common": ">=17.0.0",
|
|
126
|
+
"@angular/core": ">=17.0.0",
|
|
127
|
+
"react": ">=18.0.0",
|
|
128
|
+
"react-dom": ">=18.0.0",
|
|
129
|
+
"vue": ">=3.0.0"
|
|
130
|
+
},
|
|
131
|
+
"peerDependenciesMeta": {
|
|
132
|
+
"react": {
|
|
133
|
+
"optional": true
|
|
134
|
+
},
|
|
135
|
+
"react-dom": {
|
|
136
|
+
"optional": true
|
|
137
|
+
},
|
|
138
|
+
"vue": {
|
|
139
|
+
"optional": true
|
|
140
|
+
},
|
|
141
|
+
"@angular/core": {
|
|
142
|
+
"optional": true
|
|
143
|
+
},
|
|
144
|
+
"@angular/common": {
|
|
145
|
+
"optional": true
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
"devDependencies": {
|
|
149
|
+
"@angular/common": "^19.0.0",
|
|
150
|
+
"@angular/core": "^19.0.0",
|
|
151
|
+
"@patel.sumit51/angular": "workspace:*",
|
|
152
|
+
"@patel.sumit51/core": "workspace:*",
|
|
153
|
+
"@patel.sumit51/plugin-3d": "workspace:*",
|
|
154
|
+
"@patel.sumit51/plugin-archive": "workspace:*",
|
|
155
|
+
"@patel.sumit51/plugin-code": "workspace:*",
|
|
156
|
+
"@patel.sumit51/plugin-csv": "workspace:*",
|
|
157
|
+
"@patel.sumit51/plugin-doc": "workspace:*",
|
|
158
|
+
"@patel.sumit51/plugin-docx": "workspace:*",
|
|
159
|
+
"@patel.sumit51/plugin-excel": "workspace:*",
|
|
160
|
+
"@patel.sumit51/plugin-html-preview": "workspace:*",
|
|
161
|
+
"@patel.sumit51/plugin-markdown": "workspace:*",
|
|
162
|
+
"@patel.sumit51/plugin-media": "workspace:*",
|
|
163
|
+
"@patel.sumit51/plugin-opendocument": "workspace:*",
|
|
164
|
+
"@patel.sumit51/plugin-pdf": "workspace:*",
|
|
165
|
+
"@patel.sumit51/plugin-ppt": "workspace:*",
|
|
166
|
+
"@patel.sumit51/plugin-pptx": "workspace:*",
|
|
167
|
+
"@patel.sumit51/plugin-rtf": "workspace:*",
|
|
168
|
+
"@patel.sumit51/react": "workspace:*",
|
|
169
|
+
"@patel.sumit51/vue": "workspace:*",
|
|
170
|
+
"@types/react": "^18.3.0",
|
|
171
|
+
"@types/react-dom": "^18.3.0",
|
|
172
|
+
"@types/three": "^0.186.0",
|
|
173
|
+
"react": "^18.3.0",
|
|
174
|
+
"react-dom": "^18.3.0",
|
|
175
|
+
"rimraf": "^6.0.0",
|
|
176
|
+
"tsup": "^8.4.0",
|
|
177
|
+
"typescript": "~5.8.2",
|
|
178
|
+
"vue": "^3.5.0"
|
|
179
|
+
}
|
|
180
|
+
}
|