-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "@vertexvis/viewer-react",
"version": "0.22.0",
"description": "React bindings for the Vertex Viewer SDK.",
"license": "MIT",
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
"homepage": "https://github.com/Vertexvis/vertex-web-sdk#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Vertexvis/vertex-web-sdk.git"
},
"bugs": {
"url": "https://github.com/Vertexvis/vertex-web-sdk/issues"
},
"main": "./dist/bundle.cjs.js",
"module": "./dist/bundle.esm.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"clean": "rm -fr ./dist && mkdir ./dist",
"prebuild": "yarn clean",
"build": "rollup --config rollup.config.js",
"format": "yarn lint --fix",
"lint": "eslint --ext .ts,.tsx,.js,.jsx --ignore-path ../../.gitignore .",
"test": "echo 'No unit tests defined'",
"test:ci": "yarn test:coverage",
"test:coverage": "echo 'No unit tests defined'"
},
"dependencies": {
"@vertexvis/viewer": "0.22.0"
},
"devDependencies": {
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
"eslint": "^8.17.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tslib": "^2.1.0"
},
"peerDependencies": {
"react": ">=16.3.0 <19.0.0",
"react-dom": ">=16.3.0 <19.0.0",
"tslib": ">=2.1.0"
}
}