-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.32 KB
/
package.json
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
{
"name": "opencv-document-scanner",
"private": false,
"version": "1.1.1",
"type": "module",
"main": "./dist/opencv-document-scanner.umd.cjs",
"module": "./dist/opencv-document-scanner.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/opencv-document-scanner.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/opencv-document-scanner.umd.cjs"
}
},
"files": [
"dist/*.css",
"dist/*.js",
"dist/*.cjs",
"dist/*.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": "https://github.com/tony-xlh/opencvjs-document-scanner",
"author": "xulihang <xulihanghai@gmail.com> (https://github.com/xulihang)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tony-xlh/opencvjs-document-scanner/issues"
},
"homepage": "https://github.com/tony-xlh/opencvjs-document-scanner#readme",
"keywords": [
"document",
"opencv",
"scanning",
"correction",
"detection",
"dynamsoft"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.10.8",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0"
}
}