-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 850 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 850 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
31
{
"name": "webarkitlib-rs",
"version": "0.1.5",
"description": "Port of WebARKitLib (ARToolKit) to Rust and WASM",
"private": true,
"scripts": {
"build:core": "cargo build -p webarkitlib-rs",
"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 webarkitlib-rs",
"publish:wasm": "wasm-pack publish crates/wasm --access public"
},
"author": "kalwalt <github@kalwaltart.it>",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/webarkit/WebARKitLib-rs.git"
},
"keywords": [
"augmented-reality",
"computer-vision",
"marker-tracking",
"wasm",
"artoolkit",
"rust",
"webarkit",
"webarkitlib"
]
}