-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.62 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.62 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
98
99
100
{
"name": "@itwin/itwins-client",
"version": "3.0.0",
"description": "iTwins client for the iTwin platform",
"main": "./lib/cjs/itwins-client.js",
"module": "./lib/esm/itwins-client.js",
"types": "./lib/cjs/itwins-client.d.ts",
"files": [
"lib",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=16"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/itwins-client.d.ts",
"default": "./lib/esm/itwins-client.js"
},
"require": {
"types": "./lib/cjs/itwins-client.d.ts",
"default": "./lib/cjs/itwins-client.js"
}
}
},
"scripts": {
"build": "pnpm run clean && pnpm run -s build:cjs && pnpm run -s build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf lib",
"changeset": "changeset",
"changeset:version": "changeset version",
"check": "changeset status",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"lint:fix": "pnpm run lint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:e2e": "pnpm build && playwright test",
"test:e2e:ui": "pnpm build && playwright test --ui",
"test:debug": "vitest --reporter=verbose --no-coverage",
"typecheck": "tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"Bentley",
"iTwin",
"digital-twin",
"IModelHub",
"project",
"asset"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/itwins-client"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@changesets/types": "6.1.0",
"@eslint/eslintrc": "^3.3.5",
"@itwin/build-tools": "^5.7.2",
"@itwin/core-bentley": "^5.7.2",
"@itwin/eslint-plugin": "^6.0.0",
"@itwin/oidc-signin-tool": "^5.1.1",
"@playwright/test": "1.56.1",
"@types/node": "25.5.00",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"dotenv": "^17.3.1",
"dotenv-expand": "12.0.3",
"eslint": "^9.39.4",
"rimraf": "^6.1.3",
"source-map-loader": "^5.0.0",
"typedoc": "^0.28.17",
"typescript": "~5.9.3",
"vite": "^5.4.21",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.3",
"diff": ">=8.0.3",
"esbuild": ">=0.25.0",
"lodash": ">=4.18.0"
}
}
}