-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@neaps/api",
"version": "0.4.0",
"description": "HTTP JSON API for tide predictions",
"repository": {
"type": "git",
"url": "git+https://github.com/openwatersio/neaps.git",
"directory": "packages/api"
},
"homepage": "https://openwaters.io/api",
"author": "Brandon Keepers <brandon@openwaters.io>",
"license": "MIT",
"type": "module",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"files": [
"dist",
"bin"
],
"bin": {
"neaps-server": "./bin/server.js"
},
"scripts": {
"build": "tsc && tsdown",
"prepack": "npm run build",
"start": "node bin/server.js"
},
"dependencies": {
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-openapi-validator": "^5.1.6",
"neaps": "^0.6.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/supertest": "^7.2.0",
"supertest": "^7.2.2"
}
}