-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
75 lines (75 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@basemaps/cli",
"version": "7.13.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/linz/basemaps.git",
"directory": "packages/cli"
},
"author": {
"name": "Land Information New Zealand",
"url": "https://linz.govt.nz",
"organization": true
},
"license": "MIT",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"bmc": "./bmc.js"
},
"scripts": {
"build": "tsc",
"bundle": "../../scripts/bundle.mjs package.json",
"test": "node --test"
},
"bundle": [
{
"entry": "src/cli/bin.ts",
"minify": false,
"outfile": "dist/index.cjs",
"external": [
"sharp",
"pino-pretty",
"lerc"
]
}
],
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@basemaps/config": "^7.12.0",
"@basemaps/config-loader": "^7.12.0",
"@basemaps/geo": "^7.12.0",
"@basemaps/server": "^7.13.0",
"@basemaps/shared": "^7.12.0",
"@basemaps/tiler": "^7.12.0",
"@basemaps/tiler-sharp": "^7.12.0",
"@chunkd/source-memory": "^11.0.2",
"@cotar/builder": "^6.0.1",
"@cotar/tar": "^6.0.1",
"@linzjs/geojson": "^7.10.0",
"@rushstack/ts-command-line": "^4.3.13",
"ansi-colors": "^4.1.1",
"deep-diff": "^1.0.2",
"node-fetch": "^3.2.3",
"p-limit": "^4.0.0",
"pretty-json-log": "^1.0.0",
"slugify": "^1.6.5",
"zod": "^3.17.3"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.470.0",
"@aws-sdk/client-cloudfront": "^3.470.0",
"@aws-sdk/client-s3": "^3.470.0",
"@types/deep-diff": "^1.0.1"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/"
]
}