@cp949/iframecall 0.1.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,66 @@
1
+ {
2
+ "name": "@cp949/iframecall",
3
+ "version": "0.1.0",
4
+ "description": "타입 안전한 host ↔ iframe postMessage 호출 라이브러리 (React 18/19 지원)",
5
+ "keywords": [
6
+ "iframe",
7
+ "postmessage",
8
+ "rpc",
9
+ "react",
10
+ "typescript",
11
+ "host",
12
+ "cross-origin"
13
+ ],
14
+ "license": "MIT",
15
+ "author": "cp949",
16
+ "homepage": "https://github.com/cp949/iframecall#readme",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/cp949/iframecall.git",
20
+ "directory": "packages/iframecall"
21
+ },
22
+ "bugs": {
23
+ "url": "https://github.com/cp949/iframecall/issues"
24
+ },
25
+ "type": "module",
26
+ "sideEffects": false,
27
+ "files": [
28
+ "dist",
29
+ "README.md",
30
+ "LICENSE"
31
+ ],
32
+ "exports": {
33
+ "./host": {
34
+ "types": "./dist/host.d.ts",
35
+ "import": "./dist/host.js"
36
+ },
37
+ "./iframe": {
38
+ "types": "./dist/iframe.d.ts",
39
+ "import": "./dist/iframe.js"
40
+ }
41
+ },
42
+ "publishConfig": {
43
+ "access": "public"
44
+ },
45
+ "peerDependencies": {
46
+ "react": "^18.0.0 || ^19.0.0",
47
+ "@types/react": "^18.0.0 || ^19.0.0"
48
+ },
49
+ "devDependencies": {
50
+ "@testing-library/dom": "^10.4.0",
51
+ "@testing-library/react": "^16.3.0",
52
+ "@types/react": "19.2.2",
53
+ "jsdom": "^25.0.1",
54
+ "react": "^19.2.0",
55
+ "typescript": "6.0.3",
56
+ "tsup": "^8.0.0",
57
+ "vitest": "^4.1.5",
58
+ "@repo/typescript-config": "0.0.0"
59
+ },
60
+ "scripts": {
61
+ "build": "tsup",
62
+ "dev": "tsup --watch",
63
+ "check-types": "tsc --noEmit",
64
+ "test": "vitest run tests/unit --passWithNoTests"
65
+ }
66
+ }