-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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
{
"name": "@basemaps/cogify",
"version": "7.13.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/linz/basemaps.git",
"directory": "packages/cogify"
},
"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": {
"cogify": "./build/bin.js"
},
"scripts": {
"build": "tsc",
"bundle": "../../scripts/bundle.mjs package.json",
"prepack": "../../scripts/bundle.mjs package.json",
"test": "node --test"
},
"bundle": [
{
"entry": "src/bin.ts",
"minify": false,
"outfile": "dist/index.cjs",
"external": [
"sharp",
"pino-pretty"
]
}
],
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"devDependencies": {
"@basemaps/cli": "^7.13.0",
"@basemaps/config": "^7.12.0",
"@basemaps/config-loader": "^7.12.0",
"@basemaps/geo": "^7.12.0",
"@basemaps/shared": "^7.12.0",
"cmd-ts": "^0.12.1",
"p-limit": "^4.0.0",
"stac-ts": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/",
"dist/"
]
}