-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.94 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.94 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
92
93
94
95
96
97
{
"name": "@itwin/changed-elements-react",
"version": "0.17.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/changed-elements-react.git",
"directory": "packages/changed-elements-react"
},
"homepage": "https://github.com/iTwin/changed-elements-react",
"author": {
"name": "Bentley Systems, Inc.",
"url": "https://www.bentley.com"
},
"types": "./lib/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
}
},
"./experimental": {
"import": {
"types": "./lib/esm/experimental.d.ts",
"default": "./lib/esm/experimental.js"
}
}
},
"files": [
"./lib",
"./public"
],
"scripts": {
"build": "run-p build:**",
"build:copy-assets:esm": "cpx \"./src/**/*.{scss,css}\" ./lib/esm",
"build:transpile:esm": "tsc --project ./tsconfig.build.json",
"test": "vitest run",
"test:cover": "vitest run --coverage",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@itwin/appui-abstract": "^5.0.0-dev.111",
"@itwin/components-react": "^5.4.0",
"@itwin/core-bentley": "^5.0.0-dev.111",
"@itwin/core-common": "^5.0.0-dev.111",
"@itwin/core-frontend": "^5.0.0-dev.111",
"@itwin/core-geometry": "^5.0.0-dev.111",
"@itwin/core-react": "^5.4.0",
"@itwin/presentation-common": "^5.0.0-dev.111",
"@itwin/presentation-components": "^5.12.1",
"@itwin/presentation-frontend": "^5.0.0-dev.111",
"@testing-library/react": "^16.2.0",
"@types/react": "^18.0.0",
"@types/react-redux": "^7.1.25",
"@types/react-table": "^7.7.14",
"@types/react-window": "^1.8.5",
"@types/react-window-infinite-loader": "^1.0.6",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.1",
"cpx2": "^5.0.0",
"happy-dom": "^15.11.7",
"npm-run-all": "^4.1.5",
"react": "^18.0.0",
"react-dom": "^18.0.2",
"react-redux": "^7.2.2",
"redux": "^4.1.0",
"typescript": "~5.5.4",
"vite": "^5.4.20",
"vitest": "^2.1.9"
},
"peerDependencies": {
"@itwin/appui-abstract": "^5.0.0-dev.111",
"@itwin/components-react": "^5.4.0",
"@itwin/core-bentley": "^5.0.0-dev.111",
"@itwin/core-common": "^5.0.0-dev.111",
"@itwin/core-frontend": "^5.0.0-dev.111",
"@itwin/core-geometry": "^5.0.0-dev.111",
"@itwin/core-react": "^5.4.0",
"@itwin/presentation-common": "^5.0.0-dev.111",
"@itwin/presentation-components": "^5.12.1",
"@itwin/presentation-frontend": "^5.0.0-dev.111",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@itwin/itwinui-icons-color-react": "^2.1.0",
"@itwin/itwinui-icons-react": "^2.9.0",
"@itwin/itwinui-react": "^3.16.6",
"clsx": "^2.1.1",
"react-table": "^7.8.0",
"react-window": "^1.8.10",
"react-window-infinite-loader": "^1.0.9"
}
}