-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "avansel",
"version": "0.0.16",
"description": "Free OpenSource ThreeJS Javascript Virtual Tours viewer",
"keywords": [
"threejs",
"js",
"panorama",
"viewer",
"multiresolution",
"virtual tour"
],
"main": "./build/avansel.js",
"type": "module",
"module": "./build/avansel.js",
"exports": {
".": "./build/avansel.js"
},
"homepage": "https://avansel.github.io",
"repository": {
"type": "git",
"url": "https://github.com/avansel/viewer.git"
},
"bugs": {
"url": "https://github.com/avansel/viewer/issues",
"email": "roman@grinev.software"
},
"scripts": {
"dev": "rollup -c ./utils/build/rollup.config.js -w",
"build": "rollup -c ./utils/build/rollup.config.js",
"start": "node app.js"
},
"author": {
"name": "Roman Grinev",
"email": "roman@grinev.software",
"url": "https://grinev.software"
},
"license": "MIT",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/grinev"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.143.1",
"express": "^4.18.1",
"rollup-plugin-gzip": "^3.0.1",
"ts-loader": "^9.3.1",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"dependencies": {
"three": "^0.143.0"
}
}