-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dynamsoft-document-viewer",
"version": "5.0.0",
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"license": "SEE LICENSE IN LICENSE.txt",
"description": "Dynamsoft Document Viewer (DDV) is an SDK designed to provide different types of viewers to configure and achieve different processing flows for documents.",
"devDependencies": {},
"directories": {},
"files": [
"Api Reference.html",
"legal.txt",
"dist"
],
"homepage": "https://www.dynamsoft.com/document-viewer/docs/introduction/index.html",
"keywords": [
"user interface customize",
"viewer",
"capturing",
"perspective transformation",
"image filter",
"document detect",
"annotation",
"pdf viewer"
],
"main": "dist/ddv.es.js",
"module": "dist/ddv.es.js",
"maintainers": [
{
"name": "Dynamsoft Support Team",
"email": "support@dynamsoft.com"
}
],
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/Dynamsoft/document-viewer-javascript"
},
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ddv.es.js",
"default": "./dist/ddv.es.js"
},
"./dist/ddv.css": "./dist/ddv.css",
"./annotation": {
"types": "./dist/plugins/ddv-plugin-annotation.es.d.ts",
"import": "./dist/plugins/ddv-plugin-annotation.es.js",
"default": "./dist/plugins/ddv-plugin-annotation.es.js"
},
"./camera": {
"types": "./dist/plugins/ddv-plugin-camera.es.d.ts",
"import": "./dist/plugins/ddv-plugin-camera.es.js",
"default": "./dist/plugins/ddv-plugin-camera.es.js"
},
"./imagePdf": {
"types": "./dist/plugins/ddv-plugin-image-pdf.es.d.ts",
"import": "./dist/plugins/ddv-plugin-image-pdf.es.js",
"default": "./dist/plugins/ddv-plugin-image-pdf.es.js"
}
},
"sideEffects": false,
"private": false
}