-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.78 KB
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
85
86
87
88
89
90
91
{
"name": "@itwin/desktop-viewer-react",
"version": "5.1.1",
"description": "Configurable iTwin.js viewer for desktop applications",
"type": "module",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"license": "MIT",
"repository": "https://github.com/itwin/viewer/tree/main/packages/modules/desktop-viewer-react",
"scripts": {
"start": "npm run build -- -w",
"build": "tsc 1>&2 --outDir lib",
"prod-build": "tsc -b",
"test": "",
"clean": "rimraf lib",
"rebuild": "npm run clean && npm run build",
"lint": "eslint \"src/**/*.ts*\" 1>&2",
"lint:fix": "npm run -s lint -- --fix"
},
"dependencies": {
"@itwin/viewer-react": "workspace:*"
},
"devDependencies": {
"@itwin/appui-abstract": "^5.11.2",
"@itwin/appui-react": "^5.33.0",
"@itwin/build-tools": "^5.11.2",
"@itwin/components-react": "^5.33.0",
"@itwin/core-backend": "^5.11.2",
"@itwin/core-bentley": "^5.11.2",
"@itwin/core-common": "^5.11.2",
"@itwin/core-electron": "^5.11.2",
"@itwin/core-frontend": "^5.11.2",
"@itwin/core-geometry": "^5.11.2",
"@itwin/core-markup": "^5.11.2",
"@itwin/core-orbitgt": "^5.11.2",
"@itwin/core-quantity": "^5.11.2",
"@itwin/core-react": "^5.33.0",
"@itwin/ecschema-metadata": "^5.11.2",
"@itwin/ecschema-rpcinterface-common": "^5.11.2",
"@itwin/electron-authorization": "^0.22.0",
"@itwin/imodel-components-react": "^5.33.0",
"@itwin/presentation-common": "^5.11.2",
"@itwin/presentation-components": "^6.0.0",
"@itwin/presentation-frontend": "^5.11.2",
"@itwin/webgl-compatibility": "^5.11.2",
"@itwin/unified-selection-react": "^1.0.0",
"@itwin/itwinui-react": "^3.18.0",
"@types/node": "^22",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"eslint": "^9.13.0",
"copyfiles": "^2.1.0",
"electron": "^41.0.0",
"identity-obj-proxy": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9",
"redux": "^5",
"rimraf": "^3.0.2",
"typescript": "~5.6.2"
},
"peerDependencies": {
"@itwin/core-bentley": "^5.0.0",
"@itwin/core-common": "^5.0.0",
"@itwin/core-electron": "^5.0.0",
"@itwin/core-frontend": "^5.0.0",
"@itwin/ecschema-metadata": "^5.0.0",
"@itwin/electron-authorization": "^0.21.0 || ^0.22.0",
"@itwin/presentation-frontend": "^5.0.0",
"electron": "^36.0.0 || ^37.0.0 || ^38.0.0 || ^39.0.0 || ^40.0.0 || ^41.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-redux": "^9.0.0",
"redux": "^5.0.0"
},
"keywords": [
"Bentley",
"iModel",
"iModelJs",
"iTwin"
]
}