-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"private": true,
"type": "module",
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "npm run build --workspaces --if-present && tsc",
"lint": "eslint && prettier --check .",
"format": "prettier --write .",
"benchmarks": "node benchmarks/noaa.ts",
"changeset": "changeset",
"version": "changeset version",
"release": "bash scripts/release.sh"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^10.0.1",
"@types/make-fetch-happen": "^10.0.4",
"@types/node": "^25.0.2",
"@vitest/coverage-v8": "^4.0.15",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.2.0",
"make-fetch-happen": "^15.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.7.4",
"tsdown": "^0.21.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.15"
},
"workspaces": [
"packages/tide-predictor",
"packages/neaps",
"packages/api",
"packages/cli"
]
}