-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.68 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.68 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
69
70
71
{
"name": "@neaps/tide-database",
"version": "0.7.0",
"description": "A public database of tide harmonics",
"keywords": [
"tides",
"harmonics",
"database"
],
"homepage": "https://openwaters.io/tides/database",
"bugs": {
"url": "https://github.com/openwatersio/tide-database/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openwatersio/tide-database.git"
},
"license": "MIT",
"author": "Brandon Keepers <brandon@openwaters.io>",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc -b && tsc -p tsconfig.node.json && tsdown",
"prepare": "npm run build",
"test": "vitest -r test",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@neaps/tide-predictor": "^0.8.0",
"@types/geokdbush": "^1.1.5",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^25.0.3",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"country-code-lookup": "^0.1.3",
"geo-tz": "^8.1.4",
"make-fetch-happen": "^15.0.3",
"moment": "^2.30.1",
"prettier": "^3.7.4",
"sort-object-keys": "^2.0.1",
"tsdown": "^0.21.6",
"typescript": "^5.9.3",
"unplugin-macros": "^0.19.0",
"vitest": "^4.0.15"
},
"files": [
"dist",
"schemas"
],
"dependencies": {
"geokdbush": "^2.0.1",
"kdbush": "^4.0.2",
"minisearch": "^7.2.0"
},
"workspaces": [
"packages/*"
]
}