@apps-in-toss/framework 0.0.0-dev.1744801739343 → 0.0.0-dev.1752049503789
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/bridge-meta.d.ts +1 -0
- package/dist/bridge-meta.js +158 -0
- package/dist/index.cjs +1388 -311
- package/dist/index.d.cts +26 -1179
- package/dist/index.d.ts +26 -1179
- package/dist/index.js +1341 -288
- package/dist/jest/index.cjs +2 -2
- package/dist/jest/index.d.cts +1 -1
- package/dist/jest/index.d.ts +1 -1
- package/dist/jest/index.js +1 -1
- package/package.json +25 -28
- package/src/bridge-entry.ts +4 -0
- package/src/async-bridges.ts +0 -9
- package/src/constant-bridges.ts +0 -3
- package/src/event-bridges.ts +0 -1
package/dist/jest/index.cjs
CHANGED
|
@@ -17,8 +17,8 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
17
17
|
// src/jest/index.ts
|
|
18
18
|
var jest_exports = {};
|
|
19
19
|
module.exports = __toCommonJS(jest_exports);
|
|
20
|
-
__reExport(jest_exports, require("react-native
|
|
20
|
+
__reExport(jest_exports, require("@granite-js/react-native/jest"), module.exports);
|
|
21
21
|
// Annotate the CommonJS export names for ESM import in node:
|
|
22
22
|
0 && (module.exports = {
|
|
23
|
-
...require("react-native
|
|
23
|
+
...require("@granite-js/react-native/jest")
|
|
24
24
|
});
|
package/dist/jest/index.d.cts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from 'react-native
|
|
1
|
+
export * from '@granite-js/react-native/jest';
|
package/dist/jest/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from 'react-native
|
|
1
|
+
export * from '@granite-js/react-native/jest';
|
package/dist/jest/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-dev.
|
|
4
|
+
"version": "0.0.0-dev.1752049503789",
|
|
5
5
|
"description": "The framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepack": "yarn build",
|
|
8
8
|
"typecheck": "tsc --noEmit",
|
|
9
|
-
"test
|
|
9
|
+
"test": "vitest --no-watch",
|
|
10
|
+
"test:no-parallel": "vitest --no-watch --config=vitest.no-parallel.config.mts",
|
|
10
11
|
"lint": "eslint .",
|
|
11
12
|
"build": "tsup"
|
|
12
13
|
},
|
|
@@ -24,17 +25,10 @@
|
|
|
24
25
|
"import": "./dist/plugins/index.js",
|
|
25
26
|
"require": "./dist/plugins/index.cjs"
|
|
26
27
|
},
|
|
27
|
-
"./
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"./constant-bridges": {
|
|
32
|
-
"types": "./src/constant-bridges.ts",
|
|
33
|
-
"default": "./src/constant-bridges.ts"
|
|
34
|
-
},
|
|
35
|
-
"./event-bridges": {
|
|
36
|
-
"types": "./src/event-bridges.ts",
|
|
37
|
-
"default": "./src/event-bridges.ts"
|
|
28
|
+
"./bridge-entry": "./src/bridge-entry.ts",
|
|
29
|
+
"./bridge-meta": {
|
|
30
|
+
"types": "./dist/bridge-meta.d.ts",
|
|
31
|
+
"default": "./dist/bridge-meta.js"
|
|
38
32
|
},
|
|
39
33
|
"./jest": {
|
|
40
34
|
"types": "./dist/jest/index.d.ts",
|
|
@@ -45,6 +39,7 @@
|
|
|
45
39
|
},
|
|
46
40
|
"files": [
|
|
47
41
|
"dist/**/*",
|
|
42
|
+
"src/bridge-entry.ts",
|
|
48
43
|
"src/async-bridges.ts",
|
|
49
44
|
"src/constant-bridges.ts",
|
|
50
45
|
"src/event-bridges.ts",
|
|
@@ -56,40 +51,42 @@
|
|
|
56
51
|
"ait": "./bin/ait.js"
|
|
57
52
|
},
|
|
58
53
|
"dependencies": {
|
|
59
|
-
"@apps-in-toss/
|
|
60
|
-
"@apps-in-toss/
|
|
54
|
+
"@apps-in-toss/analytics": "0.0.0-dev.1752049503789",
|
|
55
|
+
"@apps-in-toss/cli": "0.0.0-dev.1752049503789",
|
|
56
|
+
"@apps-in-toss/plugins": "0.0.0-dev.1752049503789",
|
|
61
57
|
"es-hangul": "^2.3.2"
|
|
62
58
|
},
|
|
63
59
|
"devDependencies": {
|
|
64
|
-
"@
|
|
65
|
-
"@
|
|
66
|
-
"@
|
|
60
|
+
"@apps-in-toss/native-modules": "0.0.0-dev.1752049503789",
|
|
61
|
+
"@granite-js/mpack": "0.1.5",
|
|
62
|
+
"@granite-js/native": "0.1.5",
|
|
63
|
+
"@granite-js/plugin-core": "0.1.5",
|
|
64
|
+
"@granite-js/react-native": "0.1.5",
|
|
65
|
+
"@granite-js/utils": "0.1.5",
|
|
66
|
+
"@toss-design-system/react-native": "1.0.0-dev.250701142812",
|
|
67
67
|
"@types/kill-port": "^2.0.1",
|
|
68
68
|
"@types/react": "18.3.3",
|
|
69
|
-
"@types/yauzl": "^2.10.3",
|
|
70
69
|
"es-toolkit": "^1.34.1",
|
|
71
70
|
"eslint": "^9.7.0",
|
|
72
71
|
"execa": "^9.5.2",
|
|
73
72
|
"kill-port": "^2.0.1",
|
|
74
73
|
"react": "18.2.0",
|
|
75
74
|
"react-native": "0.72.6",
|
|
76
|
-
"react-native-bedrock": "0.0.0-dev.1744801739343",
|
|
77
75
|
"tsup": "^8.3.5",
|
|
78
|
-
"typescript": "
|
|
76
|
+
"typescript": "5.8.3",
|
|
79
77
|
"vitest": "^3.0.3",
|
|
80
|
-
"workspace-tools": "^0.38.2"
|
|
81
|
-
"yauzl": "^3.2.0"
|
|
78
|
+
"workspace-tools": "^0.38.2"
|
|
82
79
|
},
|
|
83
80
|
"peerDependencies": {
|
|
84
|
-
"@
|
|
85
|
-
"@
|
|
81
|
+
"@granite-js/native": "*",
|
|
82
|
+
"@granite-js/react-native": "*",
|
|
83
|
+
"@toss-design-system/react-native": ">= 1.0.0",
|
|
86
84
|
"@types/react": "*",
|
|
87
85
|
"react": "*",
|
|
88
|
-
"react-native": "*"
|
|
89
|
-
"react-native-bedrock": ">= 0.0.18"
|
|
86
|
+
"react-native": "*"
|
|
90
87
|
},
|
|
91
88
|
"publishConfig": {
|
|
92
89
|
"access": "public"
|
|
93
90
|
},
|
|
94
|
-
"gitHead": "
|
|
91
|
+
"gitHead": "8269e1336952bd7229eba87bc82ae1a077ac874a"
|
|
95
92
|
}
|
package/src/async-bridges.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export * from './native-modules/setClipboardText.js';
|
|
2
|
-
export * from './native-modules/getClipboardText.js';
|
|
3
|
-
export * from './native-modules/fetchContacts.js';
|
|
4
|
-
export * from './native-modules/fetchAlbumPhotos.js';
|
|
5
|
-
export * from './native-modules/getCurrentLocation.js';
|
|
6
|
-
export * from './native-modules/openCamera.js';
|
|
7
|
-
export * from './native-modules/appLogin.js';
|
|
8
|
-
export * from './native-modules/checkoutPayment.js';
|
|
9
|
-
export * from './native-modules/executePayment.js';
|
package/src/constant-bridges.ts
DELETED
package/src/event-bridges.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './native-event-emitter/startUpdateLocation.js';
|