forked from giacomocerquone/react-perspective-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.25 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-document-crop",
"homepage": "https://subho57.github.io/react-document-crop",
"version": "0.3.2",
"description": "React component performing crop, border detection, perspective correction and simple image filters over a provided image 📲 📸",
"author": "subho57",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/subho57/react-document-crop.git"
},
"keywords": [
"react",
"react-image",
"react-crop",
"react-cropper",
"react-image-crop",
"react-image-crop-component",
"react-image-crop-tool",
"react-easy-crop",
"react-advanced-cropper",
"react-perspective-cropper",
"opencv-react-ts",
"opencv.js",
"react-document-scanner",
"camscanner-react"
],
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/eslint-parser": "^7.24.1",
"@babel/preset-react": "^7.24.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.73",
"@types/react-dom": "^18.2.23",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-eslint": "^10.0.3",
"caniuse-lite": "^1.0.30001603",
"cross-env": "^7.0.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"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.34.1",
"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": ">=16.14.0",
"react-dom": ">=16.14.0",
"react-scripts": "^5.0.1",
"serve": "^14.2.1",
"source-map-explorer": "^2.5.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"files": [
"dist"
],
"dependencies": {
"opencv-react-ts": "^0.0.11",
"react-draggable": "^4.4.6"
},
"packageManager": "yarn@3.5.1"
}