@connextable/popbill 1.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/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@connextable/popbill",
3
+ "version": "1.0.0",
4
+ "description": "Popbill API SDK for TypeScript. see www.popbill.com",
5
+ "keywords": [
6
+ "FAX",
7
+ "KakaoTalk",
8
+ "SMS",
9
+ "accountcheck",
10
+ "api",
11
+ "bizinfocheck",
12
+ "cashbill",
13
+ "closedown",
14
+ "hometax",
15
+ "popbill",
16
+ "sdk",
17
+ "statement",
18
+ "taxinvoice"
19
+ ],
20
+ "bugs": {
21
+ "url": "https://github.com/connextable/popbill/issues"
22
+ },
23
+ "license": "MIT",
24
+ "author": {
25
+ "name": "Jinyong Park",
26
+ "email": "dev.jinyongp@gmail.com",
27
+ "url": "https://github.com/jinyongp"
28
+ },
29
+ "contributors": [
30
+ {
31
+ "name": "Kim Seongjun",
32
+ "email": "pallet027@gmail.com"
33
+ },
34
+ {
35
+ "name": "Linkhub DEV",
36
+ "email": "code@linkhubcorp.com"
37
+ }
38
+ ],
39
+ "repository": {
40
+ "type": "git",
41
+ "url": "https://github.com/connextable/popbill.git"
42
+ },
43
+ "files": [
44
+ "dist"
45
+ ],
46
+ "type": "module",
47
+ "sideEffects": false,
48
+ "types": "./dist/index.d.mts",
49
+ "exports": {
50
+ ".": "./dist/index.mjs",
51
+ "./package.json": "./package.json"
52
+ },
53
+ "publishConfig": {
54
+ "access": "public"
55
+ },
56
+ "dependencies": {
57
+ "@connextable/popbill-compat": "1.0.0",
58
+ "@connextable/popbill-spec": "1.0.0",
59
+ "@connextable/popbill-utils": "1.0.0"
60
+ },
61
+ "engines": {
62
+ "node": ">=20"
63
+ },
64
+ "scripts": {
65
+ "build": "tsdown",
66
+ "test": "vitest run",
67
+ "test:coverage": "vitest run --coverage",
68
+ "lint": "oxlint --type-aware",
69
+ "lint:fix": "oxlint --fix",
70
+ "fmt": "oxfmt",
71
+ "fmt:check": "oxfmt --check",
72
+ "typecheck": "tsgo -b --noEmit",
73
+ "typecheck:lib": "tsgo -p tsconfig.lib.json --noEmit",
74
+ "typecheck:test": "tsgo -p tsconfig.test.json --noEmit",
75
+ "clean": "del node_modules dist"
76
+ }
77
+ }