-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.79 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
{
"name": "ppu-ocv",
"version": "3.1.0",
"description": "A type-safe, modular, chainable image processing library built on top of OpenCV.js with a fluent API leveraging pipeline processing.",
"keywords": [
"open-cv",
"image-processor",
"canvas",
"threshold",
"computer-vision",
"opencv-js",
"perspective-transformation",
"edge-detection",
"contours",
"pipeline",
"type-safe",
"modular",
"chainable",
"bun",
"browser",
"web"
],
"author": "snowfluke",
"license": "MIT",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./web": {
"types": "./index.web.d.ts",
"default": "./index.web.js"
},
"./canvas": {
"types": "./index.canvas.d.ts",
"default": "./index.canvas.js"
},
"./canvas-web": {
"types": "./index.canvas-web.d.ts",
"default": "./index.canvas-web.js"
}
},
"scripts": {
"task": "bun scripts/task.ts",
"build:test": "bun task build && bun test",
"build:publish": "bun task build && bun task report-size && bun task publish",
"lint": "prettier --check ./src",
"lint:fix": "prettier --write ./src",
"demo": "bunx -y serve -l 4567 ."
},
"devDependencies": {
"@stylistic/eslint-plugin": "latest",
"@types/bun": "latest",
"@types/uglify-js": "latest",
"mitata": "latest",
"prettier": "^3.8.1",
"tsx": "latest",
"typescript": "latest",
"typescript-eslint": "latest",
"uglify-js": ">=2.4.24"
},
"repository": {
"type": "git",
"url": "https://github.com/PT-Perkasa-Pilar-Utama/ppu-ocv.git"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.69",
"@techstark/opencv-js": "^4.10.0-release.1"
}
}