@sjunepark/landprice 0.0.0
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/LICENSE.md +47 -0
- package/README.md +100 -0
- package/TERMS.md +38 -0
- package/dist/cli.js +86 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sjunepark/landprice",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "Read-only CLI for Korean official standard and individual land prices.",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"packageManager": "bun@1.3.13",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/sjunepark/landprice.git"
|
|
11
|
+
},
|
|
12
|
+
"bin": {
|
|
13
|
+
"landprice": "dist/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE.md",
|
|
19
|
+
"TERMS.md"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
23
|
+
},
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=20.18.1"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "bun run scripts/build-cli.ts",
|
|
29
|
+
"build:binaries": "bun run scripts/build-binaries.ts",
|
|
30
|
+
"prepack": "bun run build",
|
|
31
|
+
"prepublishOnly": "bun run typecheck && bun test",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"test": "bun test",
|
|
34
|
+
"test:live": "LANDPRICE_LIVE=1 bun test"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"commander": "^14.0.3",
|
|
38
|
+
"effect": "^3.17.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/bun": "^1.3.1",
|
|
42
|
+
"typescript": "^5.9.0"
|
|
43
|
+
}
|
|
44
|
+
}
|