-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.1 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dynamsoft-document-scanner",
"version": "1.5.0",
"description": "Dynamsoft Document Scanner (DDS) is a ready-to-use SDK for capturing and enhancing document images with automatic border detection, correction, and customizable workflows.",
"files": [
"/dist",
"/LICENSE"
],
"sideEffects": true,
"//": "DEPRECATED: 'main' and 'module' are kept for legacy compatibility (Node < 12.7, Webpack 4). Modern consumers should use 'exports'. Remove in a future major release.",
"main": "./dist/dds.bundle.js",
"module": "./dist/dds.bundle.esm.js",
"types": "./dist/dds.bundle.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/dds.bundle.d.ts",
"default": "./dist/dds.bundle.esm.js"
},
"require": {
"types": "./dist/dds.bundle.d.ts",
"default": "./dist/dds.bundle.js"
}
}
},
"unpkg": "./dist/dds.bundle.js",
"jsdelivr": "./dist/dds.bundle.js",
"type": "module",
"scripts": {
"build": "vite build && vite build --mode bundle",
"build:dev": "vite build --sourcemap && vite build --mode bundle --sourcemap",
"build:demo": "vite build --config samples/demo/vite.config.ts samples/demo",
"dev": "vite",
"pack:local": "npm run build && npm pack --pack-destination samples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dynamsoft/document-scanner-javascript"
},
"keywords": [
"document scanning",
"js",
"javascript",
"dynamsoft",
"passport",
"scanner",
"ui",
"camera",
"vision"
],
"author": {
"name": "Dynamsoft",
"url": "https://www.dynamsoft.com"
},
"maintainers": [
{
"name": "Dynamsoft",
"email": "support@dynamsoft.com"
}
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://www.dynamsoft.com",
"devDependencies": {
"@microsoft/api-extractor": "^7.58.7",
"@types/node": "^24.12.0",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"typescript": "^5.9.3",
"unplugin-dts": "^1.0.0",
"vite": "^8.0.13"
},
"dependencies": {
"dynamsoft-capture-vision-bundle": "~3.2.5000",
"dynamsoft-capture-vision-data": "1.1.0",
"image-filter-js": "^1.0.1"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.0.0"
}
}