-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 816 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 816 Bytes
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
{
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "npm run build --workspaces --if-present",
"lint": "eslint && prettier --check .",
"format": "prettier --write .",
"benchmarks": "node benchmarks/noaa.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@neaps/tide-database": "*",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^25.0.2",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"make-fetch-happen": "^15.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"tsdown": "^0.20.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.49.0",
"vitest": "^4.0.15"
},
"workspaces": [
"packages/*"
]
}