@visulima/iso-locale 1.0.0-alpha.1 → 1.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +11 -1
  3. package/package.json +109 -148
package/CHANGELOG.md CHANGED
@@ -1,3 +1,14 @@
1
+ ## @visulima/iso-locale [1.0.0-alpha.2](https://github.com/visulima/visulima/compare/@visulima/iso-locale@1.0.0-alpha.1...@visulima/iso-locale@1.0.0-alpha.2) (2026-01-17)
2
+
3
+ ### Bug Fixes
4
+
5
+ * added missing og image ([7712247](https://github.com/visulima/visulima/commit/771224739f29e977d5684849dcf015486c75ff00))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * fixed changelog ([6ebdc5b](https://github.com/visulima/visulima/commit/6ebdc5b56e94054f4ac88d2bc2235a2c14d3d608))
10
+ * sorting package.json ([430ed68](https://github.com/visulima/visulima/commit/430ed683d3e38e4c5c5530f787ca832f083b17e4))
11
+
1
12
  ## @visulima/iso-locale 1.0.0-alpha.1 (2026-01-17)
2
13
 
3
14
  ### Features
package/README.md CHANGED
@@ -1,4 +1,14 @@
1
- <!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER --><!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
1
+ <!-- START_PACKAGE_OG_IMAGE_PLACEHOLDER -->
2
+
3
+ <a href="https://www.anolilab.com/open-source" align="center">
4
+
5
+ <img src="__assets__/package-og.svg" alt="iso-locale" />
6
+
7
+ </a>
8
+
9
+ <h3 align="center">ISO data for countries, currencies, regions, timezones, and BCP 47 locale support.</h3>
10
+
11
+ <!-- END_PACKAGE_OG_IMAGE_PLACEHOLDER -->
2
12
 
3
13
  <br />
4
14
 
package/package.json CHANGED
@@ -1,156 +1,117 @@
1
1
  {
2
- "name": "@visulima/iso-locale",
3
- "version": "1.0.0-alpha.1",
4
- "description": "ISO data for countries, currencies, regions, timezones, and BCP 47 locale support.",
5
- "keywords": [
6
- "visulima",
7
- "iso",
8
- "iso-3166",
9
- "iso-3166-1",
10
- "iso-4217",
11
- "iso-639",
12
- "iso-639-1",
13
- "iso-639-3",
14
- "country",
15
- "countries",
16
- "currency",
17
- "currencies",
18
- "country-codes",
19
- "currency-codes",
20
- "internationalization",
21
- "i18n",
22
- "locale",
23
- "locales",
24
- "bcp47",
25
- "bcp-47",
26
- "language-tag",
27
- "language-tags",
28
- "timezone",
29
- "timezones",
30
- "iana",
31
- "iana-timezone",
32
- "regions",
33
- "geoscheme",
34
- "un-geoscheme",
35
- "continent",
36
- "continents",
37
- "subregion",
38
- "subregions",
39
- "alpha-2",
40
- "alpha-3",
41
- "numeric-code",
42
- "calling-code",
43
- "phone-code",
44
- "flag",
45
- "emoji",
46
- "flag-emoji"
47
- ],
48
- "author": {
49
- "name": "Daniel Bannert",
50
- "email": "d.bannert@anolilab.de"
2
+ "name": "@visulima/iso-locale",
3
+ "version": "1.0.0-alpha.2",
4
+ "description": "ISO data for countries, currencies, regions, timezones, and BCP 47 locale support.",
5
+ "keywords": [
6
+ "visulima",
7
+ "iso",
8
+ "iso-3166",
9
+ "iso-3166-1",
10
+ "iso-4217",
11
+ "iso-639",
12
+ "iso-639-1",
13
+ "iso-639-3",
14
+ "country",
15
+ "countries",
16
+ "currency",
17
+ "currencies",
18
+ "country-codes",
19
+ "currency-codes",
20
+ "internationalization",
21
+ "i18n",
22
+ "locale",
23
+ "locales",
24
+ "bcp47",
25
+ "bcp-47",
26
+ "language-tag",
27
+ "language-tags",
28
+ "timezone",
29
+ "timezones",
30
+ "iana",
31
+ "iana-timezone",
32
+ "regions",
33
+ "geoscheme",
34
+ "un-geoscheme",
35
+ "continent",
36
+ "continents",
37
+ "subregion",
38
+ "subregions",
39
+ "alpha-2",
40
+ "alpha-3",
41
+ "numeric-code",
42
+ "calling-code",
43
+ "phone-code",
44
+ "flag",
45
+ "emoji",
46
+ "flag-emoji"
47
+ ],
48
+ "homepage": "https://visulima.com/packages/iso-locale",
49
+ "bugs": {
50
+ "url": "https://github.com/visulima/visulima/issues"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/visulima/visulima.git",
55
+ "directory": "packages/data-manipulation/iso-locale"
56
+ },
57
+ "funding": [
58
+ {
59
+ "type": "github",
60
+ "url": "https://github.com/sponsors/prisis"
51
61
  },
52
- "funding": [
53
- {
54
- "type": "github",
55
- "url": "https://github.com/sponsors/prisis"
56
- },
57
- {
58
- "type": "consulting",
59
- "url": "https://anolilab.com/support"
60
- }
61
- ],
62
- "homepage": "https://visulima.com/packages/iso-locale",
63
- "license": "MIT",
64
- "sideEffects": false,
65
- "type": "module",
66
- "exports": {
67
- ".": {
68
- "types": "./dist/index.d.ts",
69
- "default": "./dist/index.js"
70
- },
71
- "./countries": {
72
- "types": "./dist/countries.d.ts",
73
- "default": "./dist/countries.js"
74
- },
75
- "./currencies": {
76
- "types": "./dist/currencies.d.ts",
77
- "default": "./dist/currencies.js"
78
- },
79
- "./locale": {
80
- "types": "./dist/locale.d.ts",
81
- "default": "./dist/locale.js"
82
- },
83
- "./regions": {
84
- "types": "./dist/regions.d.ts",
85
- "default": "./dist/regions.js"
86
- },
87
- "./timezones": {
88
- "types": "./dist/timezones.d.ts",
89
- "default": "./dist/timezones.js"
90
- },
91
- "./types": {
92
- "types": "./dist/types.d.ts",
93
- "default": "./dist/types.js"
94
- },
95
- "./package.json": "./package.json"
62
+ {
63
+ "type": "consulting",
64
+ "url": "https://anolilab.com/support"
65
+ }
66
+ ],
67
+ "license": "MIT",
68
+ "author": {
69
+ "name": "Daniel Bannert",
70
+ "email": "d.bannert@anolilab.de"
71
+ },
72
+ "sideEffects": false,
73
+ "type": "module",
74
+ "exports": {
75
+ ".": {
76
+ "types": "./dist/index.d.ts",
77
+ "default": "./dist/index.js"
96
78
  },
97
- "files": [
98
- "dist",
99
- "README.md",
100
- "CHANGELOG.md"
101
- ],
102
- "repository": {
103
- "type": "git",
104
- "url": "git+https://github.com/visulima/visulima.git",
105
- "directory": "packages/data-manipulation/iso-locale"
79
+ "./countries": {
80
+ "types": "./dist/countries.d.ts",
81
+ "default": "./dist/countries.js"
106
82
  },
107
- "bugs": {
108
- "url": "https://github.com/visulima/visulima/issues"
83
+ "./currencies": {
84
+ "types": "./dist/currencies.d.ts",
85
+ "default": "./dist/currencies.js"
109
86
  },
110
- "scripts": {
111
- "build": "packem build --development",
112
- "build:prod": "packem build --production",
113
- "clean": "rimraf node_modules dist .eslintcache",
114
- "dev": "pnpm run build --watch",
115
- "lint:attw": "attw --pack",
116
- "lint:eslint": "eslint .",
117
- "lint:eslint:fix": "eslint . --cache --concurrency auto --fix",
118
- "lint:package-json": "publint --strict",
119
- "lint:prettier": "prettier --config=.prettierrc.cjs --check .",
120
- "lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
121
- "lint:types": "tsc --noEmit --project tsconfig.json",
122
- "test": "vitest run",
123
- "test:coverage": "vitest run --coverage",
124
- "test:ui": "vitest --ui --coverage.enabled=true",
125
- "test:watch": "vitest"
87
+ "./locale": {
88
+ "types": "./dist/locale.d.ts",
89
+ "default": "./dist/locale.js"
126
90
  },
127
- "devDependencies": {
128
- "@anolilab/eslint-config": "^20.0.0",
129
- "@anolilab/semantic-release-pnpm": "4.1.0",
130
- "@anolilab/semantic-release-preset": "13.1.0",
131
- "@arethetypeswrong/cli": "^0.18.2",
132
- "@secretlint/secretlint-rule-preset-recommend": "^11.3.0",
133
- "@total-typescript/ts-reset": "^0.6.1",
134
- "@types/node": "25.0.9",
135
- "@visulima/packem": "2.0.0-alpha.48",
136
- "@vitest/coverage-v8": "^4.0.17",
137
- "@vitest/ui": "^4.0.17",
138
- "conventional-changelog-conventionalcommits": "9.1.0",
139
- "esbuild": "^0.27.2",
140
- "eslint": "9.39.2",
141
- "prettier": "^3.8.0",
142
- "publint": "^0.3.16",
143
- "rimraf": "^6.1.2",
144
- "secretlint": "11.3.0",
145
- "semantic-release": "^25.0.2",
146
- "typescript": "^5.9.3",
147
- "vitest": "^4.0.17"
91
+ "./regions": {
92
+ "types": "./dist/regions.d.ts",
93
+ "default": "./dist/regions.js"
148
94
  },
149
- "engines": {
150
- "node": ">=22.21 <=25.*"
95
+ "./timezones": {
96
+ "types": "./dist/timezones.d.ts",
97
+ "default": "./dist/timezones.js"
151
98
  },
152
- "publishConfig": {
153
- "access": "public",
154
- "provenance": true
155
- }
156
- }
99
+ "./types": {
100
+ "types": "./dist/types.d.ts",
101
+ "default": "./dist/types.js"
102
+ },
103
+ "./package.json": "./package.json"
104
+ },
105
+ "files": [
106
+ "dist",
107
+ "README.md",
108
+ "CHANGELOG.md"
109
+ ],
110
+ "engines": {
111
+ "node": ">=22.21 <=25.*"
112
+ },
113
+ "publishConfig": {
114
+ "access": "public",
115
+ "provenance": true
116
+ }
117
+ }