@embedpdf/plugin-tiling 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/LICENSE +21 -0
- package/dist/chunk-EFKVMNBY.js +41 -0
- package/dist/chunk-EFKVMNBY.js.map +1 -0
- package/dist/index.cjs +262 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +85 -0
- package/dist/index.d.ts +85 -0
- package/dist/index.js +235 -0
- package/dist/index.js.map +1 -0
- package/dist/preact/index.cjs +163 -0
- package/dist/preact/index.cjs.map +1 -0
- package/dist/preact/index.d.cts +23 -0
- package/dist/preact/index.d.ts +23 -0
- package/dist/preact/index.js +103 -0
- package/dist/preact/index.js.map +1 -0
- package/dist/react/index.cjs +163 -0
- package/dist/react/index.cjs.map +1 -0
- package/dist/react/index.d.cts +23 -0
- package/dist/react/index.d.ts +23 -0
- package/dist/react/index.js +103 -0
- package/dist/react/index.js.map +1 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@embedpdf/plugin-tiling",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
},
|
|
14
|
+
"./preact": {
|
|
15
|
+
"types": "./dist/preact/index.d.ts",
|
|
16
|
+
"import": "./dist/preact/index.js",
|
|
17
|
+
"require": "./dist/preact/index.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./react": {
|
|
20
|
+
"types": "./dist/react/index.d.ts",
|
|
21
|
+
"import": "./dist/react/index.js",
|
|
22
|
+
"require": "./dist/react/index.cjs"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"dependencies": {},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@types/react": "^18.2.0",
|
|
28
|
+
"tsup": "^8.0.0",
|
|
29
|
+
"typescript": "^5.0.0",
|
|
30
|
+
"@embedpdf/plugin-render": "1.0.0",
|
|
31
|
+
"@embedpdf/core": "1.0.0",
|
|
32
|
+
"@embedpdf/plugin-scroll": "1.0.0",
|
|
33
|
+
"@embedpdf/models": "1.0.0",
|
|
34
|
+
"@embedpdf/plugin-viewport": "1.0.0"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"react": ">=16.8.0",
|
|
38
|
+
"react-dom": ">=16.8.0",
|
|
39
|
+
"preact": "^10.26.4",
|
|
40
|
+
"@embedpdf/core": "1.0.0"
|
|
41
|
+
},
|
|
42
|
+
"files": [
|
|
43
|
+
"dist",
|
|
44
|
+
"README.md"
|
|
45
|
+
],
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "https://github.com/embedpdf/embed-pdf-viewer",
|
|
49
|
+
"directory": "packages/plugin-tiling"
|
|
50
|
+
},
|
|
51
|
+
"homepage": "https://www.embedpdf.com/docs",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/embedpdf/embed-pdf-viewer/issues"
|
|
54
|
+
},
|
|
55
|
+
"publishConfig": {
|
|
56
|
+
"access": "public"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "PROJECT_CWD=$(pwd) pnpm -w p:build",
|
|
60
|
+
"build:watch": "PROJECT_CWD=$(pwd) pnpm -w p:build:watch",
|
|
61
|
+
"clean": "PROJECT_CWD=$(pwd) pnpm -w p:clean",
|
|
62
|
+
"lint": "PROJECT_CWD=$(pwd) pnpm -w p:lint",
|
|
63
|
+
"lint:fix": "PROJECT_CWD=$(pwd) pnpm -w p:lint:fix",
|
|
64
|
+
"typecheck": "PROJECT_CWD=$(pwd) pnpm -w p:typecheck"
|
|
65
|
+
}
|
|
66
|
+
}
|