forked from google/xrblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 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
{
"name": "xrblocks",
"version": "0.7.0",
"description": "XR Blocks SDK",
"main": "build/xrblocks.js",
"types": "build/xrblocks.d.ts",
"type": "module",
"scripts": {
"start": "rollup -c -w",
"build": "echo \"Building xrblocks.js...\" && rollup -c --failAfterWarnings",
"prepare": "npm run build",
"lint": "eslint src",
"format": "npm run format:fix",
"format:check": "prettier \"**/*.{cjs,html,js,json,md,mdx,ts,css}\" --check",
"format:fix": "prettier \"**/*.{cjs,html,js,json,md,mdx,ts,css}\" --write"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/google/xrblocks.git"
},
"author": "XR Blocks authors",
"license": "Apache-2.0",
"exports": {
".": "./build/xrblocks.js",
"./addons/*": "./build/addons/*"
},
"homepage": "https://xrblocks.github.io",
"devDependencies": {
"@dimforge/rapier3d": "^0.19.2",
"@eslint/js": "^9.35.0",
"@google/genai": "^1.28.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@sparkjsdev/spark": "^0.1.10",
"@types/dom-speech-recognition": "^0.0.7",
"@types/three": "^0.182.0",
"@types/webxr": "^0.5.23",
"eslint": "^9.35.0",
"eslint-plugin-tsdoc": "^0.4.0",
"glob": "^11.0.3",
"lit": "^3.3.1",
"openai": "^6.7.0",
"prettier": "^3.6.2",
"rollup": "^4.41.0",
"troika-three-text": "^0.52.4",
"troika-types": "^0.0.6",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
},
"peerDependencies": {
"three": "^0.182.0"
}
}