-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.93 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
71
72
73
74
75
76
77
{
"name": "abxrlib-for-webxr",
"version": "1.0.0",
"main": "Abxr.js",
"module": "Abxr.js",
"browser": "Abxr.js",
"types": "Abxr.d.ts",
"description": "AbxrLibWebForXR for node (npm)",
"scripts": {
"test-package": "npm link abxrlib",
"login": "npm login",
"build": "tsc",
"ts-watch": "npx tsc -w",
"publish": "npm publish",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"test": "ts-node src/test.ts",
"debug": "node --import ts-node/register/transpile-only --inspect-brk src/test.ts",
"changelog": "node scripts/generate-changelog.js",
"changelog:version": "node scripts/generate-changelog.js --version"
},
"engines": {
"node": ">=16.0.0"
},
"author": "ArborXR <devs@arborxr.com> (https://arborxr.com)",
"license": "ISC",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.9.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/three": "^0.160.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@react-three/fiber": "^8.15.0",
"@react-three/uikit": "^0.8.0",
"gts": "^6.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"vm-browserify": "^1.1.2",
"util": "^0.12.5",
"buffer": "^6.0.3",
"stream-browserify": "^3.0.0",
"crypto-browserify": "^3.12.1",
"guid-typescript": "^1.0.9",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"localStorage": "^1.0.4",
"threads": "^1.7.0",
"three": "^0.160.0"
},
"files": [
"Abxr.js",
"Abxr.d.ts",
"*.d.ts",
"network/**/*",
"README.md",
"LICENSE"
],
"overrides": {
"rimraf": "^5.0.5",
"glob": "^10.3.10",
"@humanwhocodes/object-schema": "npm:@eslint/object-schema@^2.1.4",
"@humanwhocodes/config-array": "npm:@eslint/config-array@^0.18.0",
"eslint": "^9.0.0"
}
}