-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
68 lines (68 loc) · 2.02 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
{
"name": "react-photo-sphere-viewer",
"version": "6.0.0",
"description": "Photosphere Viewer for React.JS, wrapper of photo-sphere-viewer.js",
"author": "Elius94",
"license": "MIT",
"keywords": [
"react",
"photosphere",
"viewer",
"360",
"panorama",
"photo",
"sphere",
"photo-sphere-viewer",
"react-photo-sphere-viewer"
],
"repository": "elius94/react-photo-sphere-viewer",
"main": "dist/index.js",
"module": "dist/index.js",
"jsnext:main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"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": {
"autoprefixer": "^10.4.17",
"eventemitter3": "^5.0.1"
},
"peerDependencies": {
"@photo-sphere-viewer/core": ">=5.7.1",
"prop-types": "^15.5.4",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@svgr/rollup": "^8.1.0",
"@types/react": "^18.2.60",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"babel-plugin-styled-components": "^2.1.4",
"copyfiles": "^2.4.1",
"gh-pages": "^6.1.1",
"rimraf": "^5.0.5",
"rollup": "^4.12.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2"
},
"files": [
"dist"
]
}