@comergehq/studio 0.1.1
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/LICENSE +21 -0
- package/README.md +19 -0
- package/dist/assets/images/merge.svg +3 -0
- package/dist/index.d.mts +24 -0
- package/dist/index.d.ts +24 -0
- package/dist/index.js +6419 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +6448 -0
- package/dist/index.mjs.map +1 -0
- package/dist/merge-72UG27QV.svg +3 -0
- package/package.json +69 -0
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="486" height="486" viewBox="0 0 486 486" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M237.025 0H243.664C254.876 95.0361 275.236 175.597 304.743 241.684C334.249 307.478 367.002 357.774 403 392.572L389.722 486C361.691 458.22 338.233 429.417 319.349 399.59C300.464 369.764 284.531 335.843 271.548 297.829C258.565 259.522 246.615 214.343 235.697 162.292L237.91 161.415C228.468 214.928 217.993 261.569 206.485 301.338C194.978 341.107 179.634 375.904 160.455 405.731C141.571 435.265 115.752 462.022 83 486L96.278 392.572C124.014 369.179 147.62 336.72 167.094 295.197C186.864 253.381 202.65 206.886 214.452 155.713C226.255 104.247 233.779 52.343 237.025 0Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@comergehq/studio",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Comerge studio",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"react-native": "dist/index.js",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/AbdelrahmanRizq97/comerge-studio.git"
|
|
21
|
+
},
|
|
22
|
+
"bugs": {
|
|
23
|
+
"url": "https://github.com/AbdelrahmanRizq97/comerge-studio/issues"
|
|
24
|
+
},
|
|
25
|
+
"homepage": "https://github.com/AbdelrahmanRizq97/comerge-studio#readme",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"author": "Comerge <abdelrahmanrizq97@gmail.com> (https://github.com/AbdelrahmanRizq97)",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"import": "./dist/index.mjs",
|
|
32
|
+
"require": "./dist/index.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
37
|
+
"build": "tsup && node scripts/copy-assets.mjs",
|
|
38
|
+
"prepublishOnly": "npm run build"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@comergehq/runtime": "^0.1.1",
|
|
42
|
+
"axios": "^1.13.1",
|
|
43
|
+
"react-native-markdown-display": "^7.0.2",
|
|
44
|
+
"react-native-logs": "^5.5.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/react": "~19.1.0",
|
|
48
|
+
"tsup": "^8.5.1",
|
|
49
|
+
"typescript": "^5.7.3"
|
|
50
|
+
},
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"@callstack/liquid-glass": "*",
|
|
53
|
+
"@supabase/supabase-js": "*",
|
|
54
|
+
"@gorhom/bottom-sheet": "*",
|
|
55
|
+
"expo": "*",
|
|
56
|
+
"expo-file-system": "*",
|
|
57
|
+
"expo-haptics": "*",
|
|
58
|
+
"expo-linear-gradient": "*",
|
|
59
|
+
"lucide-react-native": "*",
|
|
60
|
+
"react": "*",
|
|
61
|
+
"react-native-gesture-handler": "*",
|
|
62
|
+
"react-native-reanimated": "*",
|
|
63
|
+
"react-native": "*",
|
|
64
|
+
"react-native-safe-area-context": "*",
|
|
65
|
+
"react-native-svg": "*",
|
|
66
|
+
"react-native-view-shot": "*"
|
|
67
|
+
},
|
|
68
|
+
"peerDependenciesMeta": {}
|
|
69
|
+
}
|