forked from giacomocerquone/opencv-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "opencv-react-ts",
"version": "0.0.11",
"description": "OpenCV react wrapper. Hooks first API.",
"author": "subho57",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/subho57/opencv-react-ts.git"
},
"homepage": "https://subho57.github.io/opencv-react-ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"opencv",
"react",
"typescript",
"mirada",
"opencv.js"
],
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --format modern,cjs",
"start": "microbundle-crl watch --format modern,cjs",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "eslint .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/eslint-parser": "^7.21.8",
"@babel/preset-react": "^7.18.6",
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^5.0.0",
"microbundle-crl": "^0.13.11",
"mirada": "^0.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react": "*",
"react-dom": "*",
"react-scripts": ">=5.0.1",
"serve": "^14.2.0",
"source-map-explorer": "^2.5.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"files": [
"dist"
],
"optionalDependencies": {
"mirada": "^0.0.15"
},
"packageManager": "[email protected]"
}