-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.34 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
{
"name": "altspace-mapbox",
"version": "0.1.0",
"private": true,
"description": "",
"main": "built/server.js",
"author": "David J. Zielinski",
"license": "MIT",
"keywords": [
"mixed reality",
"virtual reality",
"vr",
"altspacevr",
"sample",
"node"
],
"engines": {
"node": ">=8.12.0",
"npm": ">=6.4.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "tsc --build --clean",
"build": "tsc --build && eslint --ext .ts src",
"build-only": "tsc --build",
"lint": "eslint --ext .ts src",
"start": "node .",
"debug": "node --nolazy --inspect-brk=9229 ."
},
"devDependencies": {
"@microsoft/mixed-reality-extension-sdk": "^0.17.1",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-plugin-header": "^3.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@microsoft/gltf-gen": "^0.17.1",
"@microsoft/mixed-reality-extension-sdk": "^0.17.1",
"@types/dotenv": "^6.1.0",
"@types/node": "^10.3.1",
"@types/node-fetch": "^2.5.7",
"@types/sharp": "^0.25.0",
"colorsys": "^1.0.22",
"csv-parse": ">=4.4.6",
"dotenv": "^6.2.0",
"node-fetch": "^2.6.0",
"node-osc": "",
"pkg": "^4.4.7",
"sharp": "^0.25.2",
"ws": "^7.2.3"
}
}