-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"name": "@monumental-works/apriltag-node",
"version": "1.3.0",
"description": "Node.js bindings for AprilTag detection library",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"test": "vitest run",
"test:watch": "vitest",
"example": "node examples/detect-from-image.js",
"example-async": "node examples/detect-async.js",
"example-init": "node examples/ensure-initialized.js",
"example-comprehensive": "node examples/detect-comprehensive.js",
"example-focused": "node examples/detect-focused.js",
"performance": "node examples/performance-test.js",
"timing": "node examples/constructor-timing.js"
},
"keywords": [
"apriltag",
"computer-vision",
"fiducial",
"marker",
"detection",
"opencv",
"robotics"
],
"author": "Monumental Works BV",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/terraform-industries/apriltag-node.git"
},
"bugs": {
"url": "https://github.com/terraform-industries/apriltag-node/issues"
},
"homepage": "https://github.com/terraform-industries/apriltag-node#readme",
"dependencies": {
"node-addon-api": "^7.0.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"node-gyp": "^10.0.0",
"prettier": "^3.6.2",
"vitest": "^3.2.4"
},
"gypfile": true,
"files": [
"lib/",
"src/",
"deps/",
"binding.gyp",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}