-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 845 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 845 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
32
33
34
35
36
37
38
39
{
"name": "postaldatapi",
"version": "0.3.0",
"description": "Official Node.js/TypeScript SDK for the PostalDataPI global postal code API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"postal-code",
"zipcode",
"geocoding",
"api",
"sdk",
"typescript"
],
"author": "Thom Ives <thom@postaldatapi.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PostalDataPI/postaldatapi-node.git"
},
"homepage": "https://postaldatapi.com",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.5.0",
"vitest": "^3.0.0"
}
}