-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.79 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "anyaddress",
"version": "0.1.0",
"description": "Parse and normalize international street addresses in pure JavaScript — zero dependencies, runs on Node, edge, serverless, and the browser. A lightweight, no-native-build alternative to libpostal for US, CA, UK & AU address parsing.",
"keywords": [
"address",
"address-parser",
"parse-address",
"address-parsing",
"address-normalization",
"normalize-address",
"postal-address",
"street-address",
"international-address",
"geocoding",
"shipping",
"ecommerce",
"checkout",
"libpostal",
"libpostal-alternative",
"us-address",
"uk-address",
"canada-address",
"australia-address",
"zip-code",
"postcode",
"pure-js",
"zero-dependency",
"edge",
"serverless",
"browser",
"typescript"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean --minify",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"license": "MIT",
"author": "s4gor <imrans4gor@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/s4gor/anyaddress.git"
},
"homepage": "https://github.com/s4gor/anyaddress#readme",
"bugs": {
"url": "https://github.com/s4gor/anyaddress/issues"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^3.0.5"
}
}