-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "@watergis/terrain-rgb",
"version": "2.1.0",
"description": "This module is to get elevation from terrain RGB tilesets by longitude and latitude.",
"type": "module",
"main": "dist/terrain-rgb.umd.js",
"types": "dist/types/index.d.ts",
"module": "dist/terrain-rgb.es.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/terrain-rgb.es.js",
"require": "./dist/terrain-rgb.umd.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"scripts": {
"dev": "vite dev",
"build": "tsc && vite build",
"build:cjs": "tsc --project . --module commonjs --outDir ./dist",
"build:esm": "tsc --project . --module es2015 --outDir ./es6",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"release": "changeset publish",
"typedoc": "typedoc --entryPointStrategy Expand src/lib --out docs",
"test": "playwright test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/terrain-rgb.git"
},
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/terrain-rgb/issues"
},
"homepage": "https://github.com/watergis/terrain-rgb#readme",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@eslint/js": "^9.20.0",
"@playwright/test": "^1.50.1",
"@types/buffer-from": "^1.1.3",
"@types/node": "^22.13.1",
"@types/pako": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"canvas": "^3.1.0",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"global-mercator": "^3.1.0",
"globals": "^15.14.0",
"lefthook": "^1.10.10",
"pako": "^2.1.0",
"prettier": "^3.5.0",
"publint": "^0.3.4",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.1.0"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^10.0.0"
}
}