-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 977 Bytes
/
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
{
"name": "@itwin/saved-views-client",
"version": "0.4.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/saved-views.git",
"directory": "packages/saved-views-client"
},
"homepage": "https://github.com/iTwin/saved-views/tree/master/packages/saved-views-client",
"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"
}
},
"files": [
"./lib"
],
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"test": "vitest run",
"test:cover": "vitest run --coverage",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@vitest/coverage-v8": "^2.1.4",
"happy-dom": "^15.11.4",
"typescript": "^5.5.4",
"vite": "^5.4.11",
"vitest": "^2.1.4"
}
}