-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 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
{
"name": "@neaps/cli",
"version": "0.1.0",
"description": "Command line interface for Neaps tide prediction",
"keywords": [
"tides",
"harmonics",
"cli"
],
"homepage": "https://github.com/openwatersio/neaps#readme",
"bugs": {
"url": "https://github.com/openwatersio/neaps/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openwatersio/neaps.git",
"directory": "packages/cli"
},
"license": "MIT",
"author": "Brandon Keepers <brandon@openwaters.io>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"bin": {
"neaps": "./bin/neaps.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsdown",
"build:sea": "node scripts/build-sea.ts",
"prepack": "npm run build",
"test": "vitest"
},
"dependencies": {
"@neaps/api": "^0.4.0",
"@neaps/tide-database": "0.7",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"neaps": "^0.6.0"
},
"devDependencies": {
"@types/node": "^25.0.2",
"esbuild": "^0.27.3",
"nock": "^14.0.11"
}
}