-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 KB
/
package.json
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
{
"name": "ratk",
"version": "0.3.0",
"description": "WebXR mixed reality utilities library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"build",
"lib"
],
"scripts": {
"build": "tsc && rollup -c",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"format": "prettier --write ./src/**/*",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meta-quest/reality-accelerator-toolkit.git"
},
"keywords": [
"threejs",
"webxr",
"vr",
"ar",
"mr",
"mixedreality",
"typescript",
"sdk"
],
"author": "Felix Zhang <fe1ix@meta.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meta-quest/reality-accelerator-toolkit/issues"
},
"homepage": "https://github.com/meta-quest/reality-accelerator-toolkit#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/node": "^18.7.13",
"@types/three": "^0.149.0",
"@types/webxr": "^0.5.8",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"renamer": "^4.0.0",
"rimraf": "^5.0.5",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.5",
"vitepress": "^1.0.0-rc.31"
},
"peerDependencies": {
"three": ">0.121.1"
}
}