-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.1 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
72
73
74
75
76
77
78
79
80
81
{
"name": "@neaps/tide-database",
"version": "0.9.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/node/index.js",
"module": "./dist/node/index.js",
"types": "./dist/node/index.d.ts",
"imports": {
"#station-data": {
"browser": "./src/station-data.browser.ts",
"default": "./src/station-data.ts"
}
},
"exports": {
".": {
"browser": "./dist/browser/index.js",
"node": "./dist/node/index.js",
"default": "./dist/browser/index.js"
},
"./package.json": "./package.json"
},
"directories": {
"doc": "docs"
},
"scripts": {
"generate": "node scripts/generate-pack.mjs",
"build": "npm run generate && tsdown && node scripts/copy-pack.mjs && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.node.json && npm run smoke",
"smoke": "node scripts/smoke.mjs",
"prepare": "npm run build",
"pretest": "npm run generate",
"test": "vitest -r test",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"devDependencies": {
"@neaps/tide-predictor": "^0.11.0",
"@types/geokdbush": "^1.1.5",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^26.0.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"country-code-lookup": "^0.1.3",
"geo-tz": "^8.1.4",
"make-fetch-happen": "^16.0.0",
"moment": "^2.30.1",
"prettier": "^3.7.4",
"sort-object-keys": "^2.0.1",
"tsdown": "^0.22.1",
"typescript": "^7.0.2",
"unplugin-macros": "^0.20.0",
"vitest": "^4.0.15"
},
"files": [
"dist",
"schemas"
],
"dependencies": {
"geokdbush": "^2.0.1",
"kdbush": "^4.0.2",
"minisearch": "^7.2.0"
},
"workspaces": [
"packages/*"
]
}