yubin 0.1.0 → 0.1.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.
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yubin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Japanese postal code to address lookup. Offline, sync API.",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
"files": [
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "https://github.com/tk1024/yubin"
|
|
26
|
+
},
|
|
23
27
|
"license": "MIT",
|
|
24
28
|
"keywords": [
|
|
25
29
|
"postal-code",
|
|
@@ -30,7 +34,7 @@
|
|
|
30
34
|
"郵便番号"
|
|
31
35
|
],
|
|
32
36
|
"scripts": {
|
|
33
|
-
"build:data": "
|
|
37
|
+
"build:data": "tsx scripts/build-data.ts",
|
|
34
38
|
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
|
|
35
39
|
"postbuild": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json && echo '{\"type\":\"module\"}' > dist/esm/package.json && echo 'export{chunks}from\"../../cjs/__generated__/chunks.js\";' > dist/esm/__generated__/chunks.js && rm -f dist/esm/__generated__/chunks.js.map",
|
|
36
40
|
"prepublishOnly": "pnpm build:data && pnpm build",
|
|
@@ -43,6 +47,7 @@
|
|
|
43
47
|
"@biomejs/biome": "^2.3.10",
|
|
44
48
|
"@types/node": "^25.2.1",
|
|
45
49
|
"typescript": "^5.8.3",
|
|
50
|
+
"tsx": "^4.19.4",
|
|
46
51
|
"vitest": "^2.1.8"
|
|
47
52
|
},
|
|
48
53
|
"dependencies": {
|