@apps-in-toss/web-framework 0.0.0-dev.1743135526084 → 0.0.0-dev.1744801739343
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/dist/cli/index.js +1370 -1432
- package/dist/config/index.d.ts +7 -1
- package/dist/prebuilt/dev.android.js +3142 -2904
- package/dist/prebuilt/dev.ios.js +3141 -2922
- package/dist/prebuilt/prod.android.js +1 -1
- package/dist/prebuilt/prod.ios.js +1 -1
- package/dist/prebuilt/prod.json +6 -6
- package/dist-web/bridge.d.ts +3 -1
- package/dist-web/bridge.js +1 -1
- package/dist-web/executePayment.d.ts +1 -1
- package/dist-web/generateHapticFeedback.d.ts +1 -1
- package/dist-web/getCurrentLocation.d.ts +2 -2
- package/dist-web/getTossAppVersion.d.ts +31 -0
- package/dist-web/index.d.ts +99 -65
- package/dist-web/index.js +86 -126
- package/dist-web/openURL.d.ts +38 -0
- package/dist-web/startUpdateLocation.d.ts +2 -2
- package/package.json +20 -11
- package/hermesc/0_72_6/linux64-bin/hermesc +0 -0
- package/hermesc/0_72_6/osx-bin/hermesc +0 -0
- package/hermesc/0_72_6/win64-bin/hermesc.exe +0 -0
- package/hermesc/0_72_6/win64-bin/icudt64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icuin64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icuio64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icutest64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icutu64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/icuuc64.dll +0 -0
- package/hermesc/0_72_6/win64-bin/msvcp140.dll +0 -0
- package/hermesc/0_72_6/win64-bin/vcruntime140.dll +0 -0
- package/hermesc/0_72_6/win64-bin/vcruntime140_1.dll +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-dev.
|
|
4
|
+
"version": "0.0.0-dev.1744801739343",
|
|
5
5
|
"description": "Web Framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepack": "yarn build",
|
|
8
8
|
"typecheck": "tsc --noEmit",
|
|
9
9
|
"lint": "eslint .",
|
|
10
10
|
"build": "tsup",
|
|
11
|
+
"test:no-parallel": "vitest --no-watch",
|
|
11
12
|
"sync-bridge": "bridgepack build"
|
|
12
13
|
},
|
|
13
14
|
"main": "./dist-web/index.js",
|
|
@@ -50,7 +51,9 @@
|
|
|
50
51
|
"config.d.ts"
|
|
51
52
|
],
|
|
52
53
|
"devDependencies": {
|
|
53
|
-
"@apps-in-toss/
|
|
54
|
+
"@apps-in-toss/bridge-core": "workspace:*",
|
|
55
|
+
"@apps-in-toss/bridgepack": "^0.0.0-dev.1744801739343",
|
|
56
|
+
"@apps-in-toss/framework": "0.0.0-dev.1744801739343",
|
|
54
57
|
"@babel/plugin-proposal-class-properties": "^7.16.7",
|
|
55
58
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.7",
|
|
56
59
|
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
|
|
@@ -66,16 +69,17 @@
|
|
|
66
69
|
"@babel/types": "^7.26.9",
|
|
67
70
|
"@clack/prompts": "^0.10.0",
|
|
68
71
|
"@hono/node-server": "^1.13.8",
|
|
69
|
-
"@react-native-bedrock/
|
|
70
|
-
"@react-native-bedrock/
|
|
71
|
-
"@react-native-bedrock/
|
|
72
|
-
"@
|
|
73
|
-
"@toss-design-system/react-native": "^0.4.1",
|
|
72
|
+
"@react-native-bedrock/cli": "^0.0.0-dev.1744801739343",
|
|
73
|
+
"@react-native-bedrock/mpack-next": "^0.0.0-dev.1744801739343",
|
|
74
|
+
"@react-native-bedrock/native": "workspace:*",
|
|
75
|
+
"@toss-design-system/react-native": "^0.5.1",
|
|
74
76
|
"@types/babel__core": "^7.20.5",
|
|
75
77
|
"@types/babel__traverse": "^7",
|
|
76
78
|
"@types/debug": "^4",
|
|
79
|
+
"@types/kill-port": "^2.0.1",
|
|
77
80
|
"@types/node": "^22.10.2",
|
|
78
81
|
"@types/react": "18.3.3",
|
|
82
|
+
"@types/yauzl": "^2.10.3",
|
|
79
83
|
"clipanion": "^4.0.0-rc.4",
|
|
80
84
|
"cosmiconfig": "^9.0.0",
|
|
81
85
|
"cosmiconfig-typescript-loader": "^5.1.0",
|
|
@@ -84,23 +88,28 @@
|
|
|
84
88
|
"execa": "^9.5.2",
|
|
85
89
|
"find-up-simple": "^1.0.1",
|
|
86
90
|
"hono": "^4.7.4",
|
|
91
|
+
"kill-port": "^2.0.1",
|
|
87
92
|
"picocolors": "^1.1.1",
|
|
88
93
|
"react": "18.2.0",
|
|
89
94
|
"react-native": "0.72.6",
|
|
90
|
-
"react-native-bedrock": "0.0.
|
|
95
|
+
"react-native-bedrock": "0.0.0-dev.1744801739343",
|
|
91
96
|
"tsup": "^8.3.5",
|
|
92
97
|
"typescript": "4.9.5",
|
|
93
98
|
"uuidv7": "^1.0.2",
|
|
94
99
|
"vitest": "^3.0.5",
|
|
100
|
+
"wait-port": "^1.1.0",
|
|
101
|
+
"workspace-tools": "^0.38.2",
|
|
102
|
+
"yauzl": "^3.2.0",
|
|
95
103
|
"zod": "^3.24.1"
|
|
96
104
|
},
|
|
97
105
|
"dependencies": {
|
|
98
|
-
"@apps-in-toss/
|
|
99
|
-
"@apps-in-toss/
|
|
106
|
+
"@apps-in-toss/bridge-core": "0.0.0-dev.1744801739343",
|
|
107
|
+
"@apps-in-toss/cli": "0.0.0-dev.1744801739343",
|
|
108
|
+
"@apps-in-toss/plugins": "0.0.0-dev.1744801739343",
|
|
100
109
|
"@babel/core": "7.23.9"
|
|
101
110
|
},
|
|
102
111
|
"publishConfig": {
|
|
103
112
|
"access": "public"
|
|
104
113
|
},
|
|
105
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "aebed4e46de1690956a3b9be49b55811b5ddfa24"
|
|
106
115
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|