-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 826 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 826 Bytes
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
{
"name": "purecv",
"version": "0.3.0",
"description": "A pure Rust, high-performance computer vision library focused on safety and portability.",
"private": true,
"scripts": {
"build:core": "cargo build -p purecv",
"build:wasm": "node crates/wasm/scripts/build.js",
"build": "npm run build:core && npm run build:wasm",
"test": "cargo test",
"bench": "cargo bench",
"publish:core": "cargo publish -p purecv",
"publish:wasm": "npm publish crates/wasm/pkg --access public"
},
"author": "kalwalt <github@kalwaltart.it>",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/webarkit/purecv.git"
},
"keywords": [
"augmented-reality",
"computer-vision",
"wasm",
"opencv",
"rust",
"webarkit",
"purecv"
]
}