-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "panotour-up",
"version": "1.2.0",
"description": "Simple Panorama Viewer",
"main": "public/dist/index.js",
"types": "public/dist/index.d.ts",
"type": "module",
"files": [
"public/"
],
"scripts": {
"lint": "eslint ./src/ --ext .ts",
"build": "node ./esbuild.js && npx seo-injector --build-dir public --pretty true --verbose true",
"prepare": "npm run build",
"start": "node ./esbuild.js --watch --dev",
"serve": "npm run build && npx serve public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Elius94/panotour-up.git"
},
"devDependencies": {
"compress-images": "^2.0.5",
"esbuild": "^0.17.2",
"eslint": "^8.32.0",
"figlet": "^1.5.2",
"typescript-eslint": "^0.0.1-alpha.0",
"webpack-cli": "^5.0.1"
},
"author": "Elia Lazzari",
"license": "MIT",
"bugs": {
"url": "https://github.com/Elius94/panotour-up/issues"
},
"homepage": "https://github.com/Elius94/panotour-up#readme",
"dependencies": {
"@photo-sphere-viewer/autorotate-plugin": "^5.0.2",
"@photo-sphere-viewer/core": "^5.0.2",
"@photo-sphere-viewer/gallery-plugin": "^5.0.2",
"@photo-sphere-viewer/gyroscope-plugin": "^5.0.2",
"@photo-sphere-viewer/markers-plugin": "^5.0.2",
"@photo-sphere-viewer/stereo-plugin": "^5.0.2",
"@photo-sphere-viewer/virtual-tour-plugin": "^5.0.2",
"photo-sphere-viewer-lensflare-plugin": "^1.0.1"
}
}