-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.52 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.52 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
88
89
90
91
92
93
94
95
96
{
"name": "@robomous/opencv-react",
"version": "0.1.1",
"description": "A React wrapper for the official OpenCV.js library.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist build/opencv-js/checkouts build/opencv-js/releases",
"vendor:opencv": "node scripts/vendor-opencv.mjs",
"verify:opencv": "node scripts/verify-opencv-version.mjs",
"build:opencv:release": "bash scripts/build-opencv-js-release.sh",
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:all-versions": "bash scripts/test-all-versions.sh",
"audit:deps": "pnpm audit --audit-level moderate",
"prepack": "pnpm run typecheck && pnpm run test && pnpm run build"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^9.25.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.5.0",
"jsdom": "^29.0.2",
"prettier": "^3.5.3",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsup": "^8.4.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"packageManager": "pnpm@10.9.0",
"engines": {
"node": ">=22.0.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Robomous/opencv-react.git"
},
"bugs": {
"url": "https://github.com/Robomous/opencv-react/issues"
},
"homepage": "https://github.com/Robomous/opencv-react#readme",
"keywords": [
"opencv",
"opencv.js",
"react",
"computer-vision",
"webassembly",
"wasm",
"image-processing",
"canvas"
],
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}