-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.22 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
{
"name": "@itwin/saved-views-react",
"version": "0.7.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/saved-views.git",
"directory": "packages/saved-views-react"
},
"homepage": "https://github.com/iTwin/saved-views/tree/master/packages/saved-views-react",
"author": {
"name": "Bentley Systems, Inc.",
"url": "https://www.bentley.com"
},
"type": "module",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./experimental": {
"types": "./lib/experimental.d.ts",
"default": "./lib/experimental.js"
}
},
"files": [
"./lib",
"./public"
],
"scripts": {
"build": "run-p build:*",
"build:transpile": "run-s build:transpile:*",
"build:transpile:client": "cd ../saved-views-client && npm run build",
"build:transpile:react": "tsc --project ./tsconfig.build.json",
"build:css": "postcss src/**/*.css --base ./src --dir ./lib",
"test": "vitest run --passWithNoTests",
"test:cover": "vitest run --coverage --passWithNoTests",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@itwin/core-bentley": "^4.0.6",
"@itwin/core-common": "^4.0.6",
"@itwin/core-frontend": "^4.0.6",
"@itwin/core-geometry": "^4.0.6",
"@testing-library/react": "^12.1.5",
"@types/react": "^17.0.39",
"@types/recursive-readdir": "^2.2.2",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^2.1.4",
"cpx2": "^5.0.0",
"happy-dom": "^15.11.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"postcss-modules": "^6.0.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"recursive-readdir": "^2.2.3",
"typescript": "^5.5.4",
"vite": "^5.4.11",
"vitest": "^2.1.4"
},
"peerDependencies": {
"@itwin/core-common": "^4.0.6",
"@itwin/core-frontend": "^4.0.6",
"@itwin/core-geometry": "^4.0.6",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"dependencies": {
"@itwin/itwinui-icons-react": "^2.9.0",
"@itwin/itwinui-react": "^3.8.1",
"@itwin/saved-views-client": "workspace:^",
"fuse.js": "^6.6.2"
}
}