-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 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
{
"name": "espadon",
"version": "1.0.3",
"description": "A lightweight (~50 kB) universal typed client for Datalastic APIs: vessel live tracking, info, port info, routes, ...",
"keywords": [
"data",
"datalastic",
"isomorphic",
"marine",
"universal",
"vessel"
],
"license": "MIT",
"author": {
"name": "Louis Grange",
"url": "https://github.com/l0uisgrange"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forwardcompany/espadon.git"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"scripts": {
"build": "tsdown",
"lint": "oxlint --ignore-pattern 'test/**'",
"test": "vitest --run",
"check:format": "oxfmt --check **/*",
"format": "oxfmt **/*"
},
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^24.12.0",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"tsdown": "^0.21.6",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}