-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "@webarkit/featureset-display",
"version": "0.5.0",
"type": "module",
"main": "dist/ARFset.js",
"module": "dist/ARFset.js",
"types": "dist/ARFset.d.ts",
"unpkg": "dist/ARFset.umd.js",
"exports": {
".": {
"types": "./dist/ARFset.d.ts",
"import": "./dist/ARFset.js",
"require": "./dist/ARFset.umd.js",
"default": "./dist/ARFset.js"
}
},
"description": "FeatureSET Display based on ARToolKit, ported thanks to Emscripten",
"keywords": [
"ARToolKit",
"AR",
"Augmented Reality",
"NFT"
],
"author": "Walter Perdan @kalwalt (https://github.com/kalwalt)",
"repository": "https://github.com/webarkit/FeatureSET-Display.git",
"homepage": "https://github.com/webarkit/FeatureSET-Display",
"bugs": {
"url": "https://github.com/webarkit/FeatureSET-Display/issues"
},
"devDependencies": {
"@playwright/test": "^1.50.0",
"http-server": "^14.1.1",
"vite": "^8.0.16",
"vitest": "^4.1.8"
},
"scripts": {
"build": "node tools/makem.cjs",
"build-no-libar": "node tools/makem.cjs --no-libar",
"dev-es6": "vite build --watch",
"build-es6": "vite build",
"serve": "npx http-server -c -1",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium"
},
"license": "LGPL-3.0"
}