@frak-labs/frame-connector 0.0.1 → 0.1.0-beta.6e0d8026
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 +91 -91
package/package.json
CHANGED
|
@@ -1,93 +1,93 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
2
|
+
"name": "@frak-labs/frame-connector",
|
|
3
|
+
"author": "Frak Labs",
|
|
4
|
+
"maintainers": [
|
|
5
|
+
{
|
|
6
|
+
"name": "srod",
|
|
7
|
+
"url": "https://twitter.com/srod"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"name": "Quentin Nivelais",
|
|
11
|
+
"url": "https://twitter.com/QNivelais"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"version": "0.1.0-beta.6e0d8026",
|
|
15
|
+
"description": "Generic, type-safe RPC communication layer for bidirectional postMessage communication",
|
|
16
|
+
"repository": {
|
|
17
|
+
"url": "https://github.com/frak-id/wallet",
|
|
18
|
+
"directory": "packages/rpc"
|
|
19
|
+
},
|
|
20
|
+
"homepage": "https://docs.frak.id/wallet-sdk/overview",
|
|
21
|
+
"keywords": [
|
|
22
|
+
"frak-labs",
|
|
23
|
+
"rpc",
|
|
24
|
+
"postmessage",
|
|
25
|
+
"iframe",
|
|
26
|
+
"type-safe",
|
|
27
|
+
"bidirectional"
|
|
28
|
+
],
|
|
29
|
+
"license": "GNU GPL 3.0",
|
|
30
|
+
"sideEffects": false,
|
|
31
|
+
"private": false,
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"type": "module",
|
|
36
|
+
"files": [
|
|
37
|
+
"/dist"
|
|
38
|
+
],
|
|
39
|
+
"main": "./dist/index.cjs",
|
|
40
|
+
"types": "./dist/index.d.cts",
|
|
41
|
+
"exports": {
|
|
42
|
+
".": {
|
|
43
|
+
"import": {
|
|
44
|
+
"types": "./dist/index.d.ts",
|
|
45
|
+
"default": "./dist/index.js"
|
|
46
|
+
},
|
|
47
|
+
"require": {
|
|
48
|
+
"types": "./dist/index.d.cts",
|
|
49
|
+
"default": "./dist/index.cjs"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"./middleware": {
|
|
53
|
+
"import": {
|
|
54
|
+
"types": "./dist/middleware.d.ts",
|
|
55
|
+
"default": "./dist/middleware.js"
|
|
56
|
+
},
|
|
57
|
+
"require": {
|
|
58
|
+
"types": "./dist/middleware.d.cts",
|
|
59
|
+
"default": "./dist/middleware.cjs"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"scripts": {
|
|
64
|
+
"lint": "biome lint .",
|
|
65
|
+
"format:check": "biome check .",
|
|
66
|
+
"format": "biome check --write .",
|
|
67
|
+
"clean": "rimraf dist",
|
|
68
|
+
"build": "rslib build",
|
|
69
|
+
"build:watch": "rslib build --watch",
|
|
70
|
+
"check-exports": "attw --pack .",
|
|
71
|
+
"typecheck": "tsc --noEmit",
|
|
72
|
+
"prepublish": "bun run lint && bun run build",
|
|
73
|
+
"publish": "echo 'Publishing rpc...'"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@jsonjoy.com/json-pack": "^1.2.0"
|
|
77
|
+
},
|
|
78
|
+
"peerDependencies": {
|
|
79
|
+
"viem": "^2.23.14"
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
83
|
+
"@frak-labs/dev-tooling": "0.0.0",
|
|
84
|
+
"@microsoft/api-extractor": "^7.52.8",
|
|
85
|
+
"@rslib/core": "^0.9.2",
|
|
86
|
+
"@types/node": "^24",
|
|
87
|
+
"typescript": "^5",
|
|
88
|
+
"viem": "^2.23.14"
|
|
89
|
+
},
|
|
90
|
+
"browserslist": [
|
|
91
|
+
"extends @frak-labs/browserslist-config"
|
|
92
|
+
]
|
|
93
93
|
}
|