-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.92 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@microblink/blinkcard-in-browser-sdk",
"version": "2.9.0",
"description": "BlinkCard SDK is credit or payment cards scanning library for WebAssembly-enabled browsers.",
"homepage": "https://github.com/BlinkCard/blinkcard-in-browser",
"repository": "github:BlinkCard/blinkcard-in-browser",
"bugs": "https://github.com/BlinkCard/blinkcard-in-browser/issues",
"keywords": [
"webassembly",
"ocr",
"payment-cards",
"credit-cards",
"browser",
"optical-character-recognition"
],
"engines": {
"node": ">=16.3.0"
},
"main": "lib/blinkcard-sdk.js",
"module": "es/blinkcard-sdk.js",
"types": "types/index.d.ts",
"files": [
"ui/dist",
"ui/loader",
"dist",
"es",
"lib",
"resources",
"types"
],
"scripts": {
"build": "npm run build:api && npm run build:ui",
"build:api": "rollup -c",
"build:ui": "cd ui && npm install && npm run build",
"check-types": "tsc --noEmit",
"clean": "npm run clean:api && npm run clean:ui",
"clean:api": "rimraf dist es lib types",
"clean:ui": "cd ui && npm run clean",
"lint": "eslint --ext ts -c .eslintrc.json src",
"pretest": "npm run build",
"prepublishOnly": "npm run clean && npm run check-types && npm run lint && npm test",
"test": "echo \"Not implemented!\""
},
"devDependencies": {
"@babel/cli": "7.15.4",
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"@rollup/plugin-babel": "5.2.1",
"@rollup/plugin-node-resolve": "11.1.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"eslint": "8.38.0",
"rimraf": "^3.0.2",
"rollup": "2.38.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.27.1",
"tslib": "2.0.0",
"typescript": "5.0.4"
},
"dependencies": {
"wasm-feature-detect": "1.2.11",
"is-mobile": "^4.0.0",
"p-throttle": "^5.1.0"
}
}