This repository has been archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "extension-sample",
"version": "1.0.0",
"description": "A sample iModel.js Extension",
"private": true,
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/imodeljs/extension-sample"
},
"scripts": {
"prebuild": "npm run pseudolocalize && npm run copy:assets",
"build": "tsc 1>&2 && npm run build:extension",
"build:extension": "extension-webpack-tools build -s ./src/MyExtension.ts -o ./lib/extension --sourceMap",
"clean": "rimraf lib",
"copy:assets": "cpx \"./src/public/**/*\" ./lib/extension/",
"lint": "tslint -p . 1>&2",
"pseudolocalize": "betools pseudolocalize --englishDir=./src/public/locales/en --out=./lib/extension/locales/en-PSEUDO"
},
"keywords": [
"iModel",
"BIM",
"extension"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"devDependencies": {
"@bentley/build-tools": "^2.0.0",
"@bentley/extension-webpack-tools": "^2.0.0",
"cpx": "1.5.0",
"rimraf": "^3.0.2",
"tslint": "^5.11.0",
"tslint-etc": "^1.13.0",
"typescript": "~3.7.4"
},
"dependencies": {
"@bentley/bentleyjs-core": "^2.0.0",
"@bentley/geometry-core": "^2.0.0",
"@bentley/imodeljs-common": "^2.0.0",
"@bentley/imodeljs-frontend": "^2.0.0",
"@bentley/imodeljs-i18n": "^2.0.0",
"@bentley/imodeljs-quantity": "^2.0.0",
"@bentley/orbitgt-core": "^2.0.0",
"@bentley/product-settings-client": "^2.0.0",
"@bentley/ui-abstract": "^2.0.0",
"@bentley/webgl-compatibility": "^2.0.0"
}
}