-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
84 lines (84 loc) · 3.16 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": "react-photo-sphere-viewer",
"version": "2.1.4-psv5.0.0",
"description": "Photosphere Viewer for React.JS, wrapper of photo-sphere-viewer.js",
"author": "Elius94",
"license": "MIT",
"repository": "elius94/react-photo-sphere-viewer",
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 src/**/*.css dist/",
"build": "npm run clean && rollup -c && npm run copy-files",
"start": "rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"@photo-sphere-viewer/autorotate-plugin": "^5.0.0",
"@photo-sphere-viewer/compass-plugin": "^5.0.0",
"@photo-sphere-viewer/core": "^5.0.0",
"@photo-sphere-viewer/cubemap-adapter": "^5.0.0",
"@photo-sphere-viewer/cubemap-tiles-adapter": "^5.0.0",
"@photo-sphere-viewer/cubemap-video-adapter": "^5.0.0",
"@photo-sphere-viewer/equirectangular-tiles-adapter": "^5.0.0",
"@photo-sphere-viewer/equirectangular-video-adapter": "^5.0.0",
"@photo-sphere-viewer/gallery-plugin": "^5.0.0",
"@photo-sphere-viewer/gyroscope-plugin": "^5.0.0",
"@photo-sphere-viewer/markers-plugin": "^5.0.0",
"@photo-sphere-viewer/resolution-plugin": "^5.0.0",
"@photo-sphere-viewer/settings-plugin": "^5.0.0",
"@photo-sphere-viewer/stereo-plugin": "^5.0.0",
"@photo-sphere-viewer/video-plugin": "^5.0.0",
"@photo-sphere-viewer/virtual-tour-plugin": "^5.0.0",
"@photo-sphere-viewer/visible-range-plugin": "^5.0.0",
"autoprefixer": "^10.4.7",
"eventemitter3": "^4.0.7"
},
"peerDependencies": {
"prop-types": "^15.5.4",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-eslint": "^8.0.2",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@rollup/plugin-url": "^7.0.0",
"@svgr/rollup": "^6.2.1",
"@types/estree": "^1.0.0",
"@types/jest": "^28.1.4",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"babel-core": "^6.26.3",
"babel-plugin-styled-components": "^2.0.7",
"babel-runtime": "^6.26.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"gh-pages": "^4.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-url": "^3.0.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"files": [
"dist"
]
}