@apps-in-toss/framework 0.0.0-dev.1743135526084 → 0.0.0-dev.1747216176095

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 CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "@apps-in-toss/framework",
3
3
  "type": "module",
4
- "version": "0.0.0-dev.1743135526084",
4
+ "version": "0.0.0-dev.1747216176095",
5
5
  "description": "The framework for Apps In Toss",
6
6
  "scripts": {
7
7
  "prepack": "yarn build",
8
8
  "typecheck": "tsc --noEmit",
9
+ "test": "vitest --no-watch",
10
+ "test:no-parallel": "vitest --no-watch --config=vitest.no-parallel.config.mts",
9
11
  "lint": "eslint .",
10
12
  "build": "tsup"
11
13
  },
@@ -55,25 +57,34 @@
55
57
  "ait": "./bin/ait.js"
56
58
  },
57
59
  "dependencies": {
58
- "@apps-in-toss/cli": "0.0.0-dev.1743135526084",
59
- "@apps-in-toss/plugins": "0.0.0-dev.1743135526084"
60
+ "@apps-in-toss/analytics": "0.0.0-dev.1747216176095",
61
+ "@apps-in-toss/cli": "0.0.0-dev.1747216176095",
62
+ "@apps-in-toss/plugins": "0.0.0-dev.1747216176095",
63
+ "es-hangul": "^2.3.2"
60
64
  },
61
65
  "devDependencies": {
62
- "@react-native-bedrock/mpack-next": "0.0.14",
63
- "@react-native-bedrock/native": "0.0.14",
64
- "@toss-design-system/react-native": "^0.4.1",
66
+ "@react-native-bedrock/mpack-next": "0.0.0-dev.1747215740094",
67
+ "@react-native-bedrock/native": "0.0.0-dev.1747215740094",
68
+ "@react-native-bedrock/plugin-core": "0.0.0-dev.1747215740094",
69
+ "@react-native-bedrock/utils": "0.0.0-dev.1747215740094",
70
+ "@toss-design-system/react-native": "^0.5.0",
71
+ "@types/kill-port": "^2.0.1",
65
72
  "@types/react": "18.3.3",
73
+ "es-toolkit": "^1.34.1",
66
74
  "eslint": "^9.7.0",
75
+ "execa": "^9.5.2",
76
+ "kill-port": "^2.0.1",
67
77
  "react": "18.2.0",
68
78
  "react-native": "0.72.6",
69
- "react-native-bedrock": "0.0.14",
79
+ "react-native-bedrock": "0.0.0-dev.1747215740094",
70
80
  "tsup": "^8.3.5",
71
- "typescript": "4.9.5",
72
- "vitest": "^3.0.3"
81
+ "typescript": "5.8.3",
82
+ "vitest": "^3.0.3",
83
+ "workspace-tools": "^0.38.2"
73
84
  },
74
85
  "peerDependencies": {
75
86
  "@react-native-bedrock/native": "*",
76
- "@toss-design-system/react-native": "^0.4.1",
87
+ "@toss-design-system/react-native": ">= 0.5.0",
77
88
  "@types/react": "*",
78
89
  "react": "*",
79
90
  "react-native": "*",
@@ -82,5 +93,5 @@
82
93
  "publishConfig": {
83
94
  "access": "public"
84
95
  },
85
- "gitHead": "5f9e116b3b2ad3291b80ef212029922b09f983de"
96
+ "gitHead": "b9097d25120bc711f8c90351a5c6d0346d41f7fa"
86
97
  }
@@ -1,9 +1,10 @@
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';
1
+ export * from './native-modules/setClipboardText';
2
+ export * from './native-modules/getClipboardText';
3
+ export * from './native-modules/fetchContacts';
4
+ export * from './native-modules/fetchAlbumPhotos';
5
+ export * from './native-modules/getCurrentLocation';
6
+ export * from './native-modules/openCamera';
7
+ export * from './native-modules/appLogin';
8
+ export * from './native-modules/checkoutPayment';
9
+ export * from './native-modules/eventLog';
10
+ export * from './native-modules/getTossShareLink';
@@ -1 +1,3 @@
1
- export * from './native-modules/getOperationalEnvironment.js';
1
+ export * from './native-modules/getOperationalEnvironment';
2
+ export * from './native-modules/getTossAppVersion';
3
+ export * from './native-modules/getDeviceId';
@@ -1 +1 @@
1
- export * from './native-event-emitter/startUpdateLocation.js';
1
+ export * from './native-event-emitter/startUpdateLocation';