@zerohive/hive-viewer 0.2.7 → 1.0.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/index.d.cts +6 -4
- package/dist/index.d.ts +6 -4
- package/dist/index.js +1337 -997
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1310 -991
- package/dist/index.mjs.map +1 -0
- package/dist/styles.css +309 -676
- package/package.json +60 -59
- package/dist/index.cjs +0 -1225
- package/dist/index.cjs.map +0 -1
package/package.json
CHANGED
|
@@ -1,59 +1,60 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@zerohive/hive-viewer",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.mjs",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.mjs",
|
|
13
|
-
"require": "./dist/index.js"
|
|
14
|
-
},
|
|
15
|
-
"./styles.css": "./dist/styles.css"
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist"
|
|
19
|
-
],
|
|
20
|
-
"publishConfig": {
|
|
21
|
-
"access": "public"
|
|
22
|
-
},
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/zerohive/hive-viewer.git"
|
|
26
|
-
},
|
|
27
|
-
"homepage": "https://github.com/zerohive/hive-viewer",
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/zerohive/hive-viewer/issues"
|
|
30
|
-
},
|
|
31
|
-
"peerDependencies": {
|
|
32
|
-
"react": ">=18",
|
|
33
|
-
"react-dom": ">=18"
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"dompurify": "^3.1.7",
|
|
37
|
-
"html-to-docx": "^1.8.0",
|
|
38
|
-
"html2canvas": "^1.4.1",
|
|
39
|
-
"jszip": "^3.10.1",
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
"@types/
|
|
48
|
-
"@types/
|
|
49
|
-
"@types/react
|
|
50
|
-
"react": "^18.3.1",
|
|
51
|
-
"react
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
58
|
-
|
|
59
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@zerohive/hive-viewer",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./styles.css": "./dist/styles.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/zerohive/hive-viewer.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/zerohive/hive-viewer",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/zerohive/hive-viewer/issues"
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"react": ">=18",
|
|
33
|
+
"react-dom": ">=18"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"dompurify": "^3.1.7",
|
|
37
|
+
"html-to-docx": "^1.8.0",
|
|
38
|
+
"html2canvas": "^1.4.1",
|
|
39
|
+
"jszip": "^3.10.1",
|
|
40
|
+
"lucide-react": "^0.562.0",
|
|
41
|
+
"mammoth": "^1.8.0",
|
|
42
|
+
"markdown-it": "^14.1.0",
|
|
43
|
+
"pdfjs-dist": "^4.7.76",
|
|
44
|
+
"xlsx": "^0.18.5"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/markdown-it": "^14.1.2",
|
|
48
|
+
"@types/node": "^25.0.9",
|
|
49
|
+
"@types/react": "^18.3.11",
|
|
50
|
+
"@types/react-dom": "^18.3.1",
|
|
51
|
+
"react": "^18.3.1",
|
|
52
|
+
"react-dom": "^18.3.1",
|
|
53
|
+
"tsup": "^8.5.1",
|
|
54
|
+
"typescript": "^5.6.3"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsup",
|
|
58
|
+
"dev": "tsup --watch"
|
|
59
|
+
}
|
|
60
|
+
}
|