-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.98 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
{
"name": "@vertigis/web-sdk",
"version": "0.0.0-semantically-released",
"description": "The SDK for extending VertiGIS Studio Web",
"repository": {
"type": "git",
"url": "git+https://github.com/vertigis/vertigis-web-sdk.git"
},
"author": "VertiGIS Ltd. <eric.parsons@vertigis.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vertigis/vertigis-web-sdk/issues"
},
"homepage": "https://github.com/vertigis/vertigis-web-sdk#readme",
"files": [
"bin",
"config",
"lib",
"scripts",
"template",
"test"
],
"type": "module",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"bin": {
"vertigis-web-sdk": "bin/vertigis-web-sdk.js"
},
"scripts": {
"create": "cross-env SDK_LOCAL_DEV=true node bin/vertigis-web-sdk.js create",
"test": "node ./test/index.js",
"prettier": "prettier --write \"**/*.json\" \"**/*.js\" \"**/*.ts\" \"**/*.tsx\""
},
"dependencies": {
"@vertigis/sdk-library": "^2.0.1",
"html-webpack-plugin": "^5.6.4",
"webpack-merge": "~6.0.1"
},
"devDependencies": {
"@types/node": "~22.13.14",
"@vertigis/web": "^5.42.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"cross-env": "7.0.3",
"eslint": "^9.37.0",
"eslint-import-resolver-typescript": "^4.4.4",
"execa": "^9.6.0",
"lint-staged": "~15.5.0",
"node-fetch": "^2.7.0",
"prettier": "3.2.5",
"simple-git-hooks": "~2.12.1",
"typescript": "~5.6.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json,ts,tsx,md,xml}": "prettier --write"
},
"allowScripts": {
"@mui/x-telemetry": false,
"@vaadin/vaadin-usage-statistics": false,
"playwright-chromium": false,
"simple-git-hooks": false,
"unrs-resolver": false
}
}