-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "@itwin/mobile-sdk-core",
"version": "0.22.15",
"description": "Bentley iTwin Mobile Core module",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/mobile-sdk-core"
},
"license": "MIT",
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"main": "lib/mobile-sdk-core.js",
"types": "lib/mobile-sdk-core.d.ts",
"files": [
"lib/**/*",
"!lib/**/*.map"
],
"scripts": {
"build": "npm run copy:assets && tsc 1>&2",
"clean": "rimraf lib",
"copy:assets": "cpx \"./src/**/*.{*css,svg}\" ./lib && cpx \"./public/**/*\" ./lib/public",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@itwin/core-bentley": "4.9.5",
"@itwin/core-common": "4.9.5",
"@itwin/core-frontend": "4.9.5",
"@itwin/core-geometry": "4.9.5",
"@itwin/core-i18n": "4.9.5",
"@itwin/core-markup": "4.9.5",
"@itwin/core-orbitgt": "4.9.5",
"@itwin/core-quantity": "4.9.5",
"@itwin/presentation-common": "4.9.5",
"@itwin/presentation-frontend": "4.9.5",
"@itwin/webgl-compatibility": "4.9.5",
"base64-js": "^1.5.1"
},
"devDependencies": {
"@itwin/eslint-plugin": "4.0.0-dev.48",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"cpx2": "^4.2.0",
"eslint": "^8.36.0",
"typescript": "~5.0.2"
},
"overrides": {
"eslint-plugin-jsdoc": {
"eslint": "^8.36.0"
}
}
}