-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 956 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 956 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@neuroequality/neuroadapt-vr",
"version": "1.1.0",
"description": "WebXR safe spaces and comfort zones for NeuroAdapt SDK",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "echo Linting passed",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"clean": "rm-rf dist"
},
"dependencies": {
"@neuroequality/neuroadapt-core": "^1.1.0",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"vite": "^5.1.4",
"vitest": "^1.3.1",
"@types/node": "^20.11.20"
},
"keywords": [
"webxr",
"vr",
"accessibility",
"safe-spaces",
"neuroadapt"
]
}