-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (50 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (50 loc) · 1.26 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
47
48
49
50
51
{
"name": "getaddress-api",
"version": "2.3.0",
"description": "GetAddress.io core address look-up functionality",
"type": "module",
"types": "./dist/types.d.ts",
"typings": "./dist/types.d.ts",
"main": "",
"exports": {
"import":{
"types":"./dist/types.d.ts",
"default":"./dist/getaddress-api-client.js"
},
"require":{
"types":"./dist/types.d.ts",
"default":"./dist/getaddress-api-client.cjs"
}
},
"engines": {
"node": ">= 18.0.0"
},
"homepage": "https://getaddress.io",
"repository": {
"type": "git",
"url": "https://github.com/getAddress/api"
},
"scripts": {
"cleanDist": "rimraf dist/*",
"rollup": "rollup -c",
"watch": "rollup -c --watch",
"watchTs": "tsc -p . --watch",
"compile": "tsc -p .",
"build": "npm-run-all cleanDist compile rollup"
},
"keywords": [
"getaddress.io postcode getaddress getaddress() address API"
],
"author": "Codeberry Limited",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^4.29.1",
"rollup-plugin-dts": "^6.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}