-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.97 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.97 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
81
82
83
84
85
86
87
{
"name": "@capgo/capacitor-document-scanner",
"version": "8.3.23",
"description": "Capacitor plugin to scan document iOS and Android",
"main": "dist/plugin.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"unpkg": "dist/plugin.js",
"files": [
"android/src/main/",
"android/build.gradle",
"dist/",
"ios/Sources",
"ios/Tests",
"Package.swift",
"CapgoCapacitorDocumentScanner.podspec"
],
"author": "Martin Donadieu <martin@capgo.app>",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/Cap-go/capacitor-document-scanner.git"
},
"bugs": {
"url": "https://github.com/Cap-go/capacitor-document-scanner/issues"
},
"homepage": "https://capgo.app/docs/plugins/document-scanner/",
"keywords": [
"capacitor",
"plugin",
"native"
],
"scripts": {
"verify": "bun run verify:ios && bun run verify:android && bun run verify:web",
"verify:ios": "xcodebuild -scheme CapgoCapacitorDocumentScanner -destination generic/platform=iOS",
"verify:android": "cd android && ./gradlew clean build test && cd ..",
"verify:web": "bun run build",
"example:sync:ios": "cd example-app && bun install && bun run build && bunx cap sync ios && cd ..",
"lint": "bun run eslint && bun run prettier -- --check && bun run swiftlint -- lint",
"fmt": "bun run eslint -- --fix && bun run prettier -- --write && bun run swiftlint -- --fix --format",
"eslint": "eslint . --ext ts",
"maestro:ios": "maestro test --platform ios maestro/ios-scan-cancel.yaml maestro/ios-scan-success.yaml",
"prettier": "prettier-pretty-check \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
"swiftlint": "node-swiftlint",
"docgen": "docgen --api DocumentScannerPlugin --output-readme README.md --output-json dist/docs.json",
"build": "bun run clean && bun run docgen && tsc && rollup -c rollup.config.mjs",
"clean": "rimraf ./dist",
"watch": "tsc --watch",
"prepublishOnly": "bun run build",
"check:wiring": "node scripts/check-capacitor-plugin-wiring.mjs"
},
"devDependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/docgen": "^0.3.1",
"@capacitor/ios": "^8.0.0",
"@ionic/eslint-config": "^0.4.0",
"@ionic/prettier-config": "^4.0.0",
"@ionic/swiftlint-config": "^2.0.0",
"@types/node": "^24.10.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.6.2",
"prettier-plugin-java": "^2.7.7",
"rimraf": "^6.1.0",
"rollup": "^4.53.2",
"swiftlint": "^2.0.0",
"typescript": "^5.9.3",
"prettier-pretty-check": "^0.2.0"
},
"peerDependencies": {
"@capacitor/core": ">=8.0.0"
},
"prettier": "@ionic/prettier-config",
"swiftlint": "@ionic/swiftlint-config",
"eslintConfig": {
"extends": "@ionic/eslint-config/recommended"
},
"capacitor": {
"ios": {
"src": "ios"
},
"android": {
"src": "android"
}
}
}