-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "enva-xr",
"version": "0.0.4",
"description": "Environment aware augmented reality rendering using WebXR",
"scripts": {
"start": "parcel example/*.html --port 9000 --https",
"watch": "parcel watch",
"build": "parcel build",
"lint-fix": "eslint --ext .ts --fix src",
"pub": "npm run build && npm publish --access public ."
},
"type": "module",
"staticFiles": {
"staticPath": "assets"
},
"targets": {
"default": {
"source": "src/enva.ts",
"includeNodeModules": true,
"optimize": true,
"isLibrary": true,
"distDir": "./dist"
},
"example-basic": {
"source": "example/basic.html",
"distDir": "./dist/examples/basic"
},
"example-cursor": {
"source": "example/cursor.html",
"distDir": "./dist/examples/cursor"
},
"example-depth-canvas": {
"source": "example/depth-canvas.html",
"distDir": "./dist/examples/depth-canvas"
},
"example-depth": {
"source": "example/depth.html",
"distDir": "./dist/examples/depth"
},
"example-image-target": {
"source": "example/image-target.html",
"distDir": "./dist/examples/image-target"
},
"example-light-probe": {
"source": "example/light-probe.html",
"distDir": "./dist/examples/light-probe"
},
"example-multi-feature": {
"source": "example/multi-feature.html",
"distDir": "./dist/examples/multi-feature"
}
},
"source": "src/enva.ts",
"types": "dist/types.d.ts",
"module": "dist/module.js",
"main": "dist/main.js",
"author": "Tentone",
"license": "MIT",
"keywords": [
"three",
"ar",
"webxr"
],
"peerDependencies": {
"cannon-es": ">0.20.0",
"three": ">0.150.0"
},
"devDependencies": {
"@parcel/packager-ts": "2.8.3",
"@parcel/transformer-glsl": "2.8.3",
"@parcel/transformer-typescript-tsc": "2.8.3",
"@parcel/transformer-typescript-types": "2.8.3",
"@typescript-eslint/eslint-plugin": "5.57.0",
"eslint": "8.11.0",
"eslint-plugin-import": "2.25.4",
"http-server": "14.1.1",
"parcel": "2.8.3",
"parcel-reporter-static-files-copy": "^1.5.0",
"process": "0.11.10",
"typescript": "5.0.2",
"cannon-es": "^0.20.0",
"three": "^0.150.0"
}
}