-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.09 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.09 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
{
"name": "astrocalc",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun build --target=bun --outdir=dist src/index.ts",
"dev": "bun run --watch --no-clear-screen src/index.ts",
"test": "bun test",
"coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts src"
},
"dependencies": {
"@hono/zod-validator": "^0.4.3",
"@scalar/hono-api-reference": "^0.8.2",
"astronomia": "^4.1.1",
"date-fns": "^4.1.0",
"hono": "^4.7.7",
"hono-openapi": "^0.4.6",
"neverthrow": "^8.2.0",
"sweph": "^2.10.3-4",
"typescript": "^5.8.3",
"zod": "^3.24.2",
"zod-openapi": "^4.2.4"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/bun": "latest",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"openapi-types": "^12.1.3",
"prettier": "^3.5.3",
"typescript-eslint": "^8.30.1"
},
"trustedDependencies": [
"protobufjs",
"sweph"
]
}