vibewithme 0.1.0

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.
@@ -0,0 +1,212 @@
1
+ #!/usr/bin/env node
2
+ import {
3
+ AbsolutePosition,
4
+ AbstractConnector,
5
+ AbstractStruct,
6
+ AbstractType,
7
+ ContentAny,
8
+ ContentBinary,
9
+ ContentDeleted,
10
+ ContentDoc,
11
+ ContentEmbed,
12
+ ContentFormat,
13
+ ContentJSON,
14
+ ContentString,
15
+ ContentType,
16
+ Doc,
17
+ GC,
18
+ ID,
19
+ Item,
20
+ PermanentUserData,
21
+ RelativePosition,
22
+ Skip,
23
+ Snapshot,
24
+ Transaction,
25
+ UndoManager,
26
+ UpdateDecoderV1,
27
+ UpdateDecoderV2,
28
+ UpdateEncoderV1,
29
+ UpdateEncoderV2,
30
+ YArray,
31
+ YArrayEvent,
32
+ YEvent,
33
+ YMap,
34
+ YMapEvent,
35
+ YText,
36
+ YTextEvent,
37
+ YXmlElement,
38
+ YXmlEvent,
39
+ YXmlFragment,
40
+ YXmlHook,
41
+ YXmlText,
42
+ applyUpdate,
43
+ applyUpdateV2,
44
+ cleanupYTextFormatting,
45
+ compareIDs,
46
+ compareRelativePositions,
47
+ convertUpdateFormatV1ToV2,
48
+ convertUpdateFormatV2ToV1,
49
+ createAbsolutePositionFromRelativePosition,
50
+ createDeleteSet,
51
+ createDeleteSetFromStructStore,
52
+ createDocFromSnapshot,
53
+ createID,
54
+ createRelativePositionFromJSON,
55
+ createRelativePositionFromTypeIndex,
56
+ createSnapshot,
57
+ decodeRelativePosition,
58
+ decodeSnapshot,
59
+ decodeSnapshotV2,
60
+ decodeStateVector,
61
+ decodeUpdate,
62
+ decodeUpdateV2,
63
+ diffUpdate,
64
+ diffUpdateV2,
65
+ emptySnapshot,
66
+ encodeRelativePosition,
67
+ encodeSnapshot,
68
+ encodeSnapshotV2,
69
+ encodeStateAsUpdate,
70
+ encodeStateAsUpdateV2,
71
+ encodeStateVector,
72
+ encodeStateVectorFromUpdate,
73
+ encodeStateVectorFromUpdateV2,
74
+ equalDeleteSets,
75
+ equalSnapshots,
76
+ findIndexSS,
77
+ findRootTypeKey,
78
+ getItem,
79
+ getItemCleanEnd,
80
+ getItemCleanStart,
81
+ getState,
82
+ getTypeChildren,
83
+ isDeleted,
84
+ isParentOf,
85
+ iterateDeletedStructs,
86
+ logType,
87
+ logUpdate,
88
+ logUpdateV2,
89
+ mergeDeleteSets,
90
+ mergeUpdates,
91
+ mergeUpdatesV2,
92
+ obfuscateUpdate,
93
+ obfuscateUpdateV2,
94
+ parseUpdateMeta,
95
+ parseUpdateMetaV2,
96
+ readUpdate,
97
+ readUpdateV2,
98
+ relativePositionToJSON,
99
+ snapshot,
100
+ snapshotContainsUpdate,
101
+ transact,
102
+ tryGc,
103
+ typeListToArraySnapshot,
104
+ typeMapGetAllSnapshot,
105
+ typeMapGetSnapshot
106
+ } from "./chunk-2JHYHMND.js";
107
+ import "./chunk-MO4EEYFW.js";
108
+ export {
109
+ AbsolutePosition,
110
+ AbstractConnector,
111
+ AbstractStruct,
112
+ AbstractType,
113
+ YArray as Array,
114
+ ContentAny,
115
+ ContentBinary,
116
+ ContentDeleted,
117
+ ContentDoc,
118
+ ContentEmbed,
119
+ ContentFormat,
120
+ ContentJSON,
121
+ ContentString,
122
+ ContentType,
123
+ Doc,
124
+ GC,
125
+ ID,
126
+ Item,
127
+ YMap as Map,
128
+ PermanentUserData,
129
+ RelativePosition,
130
+ Skip,
131
+ Snapshot,
132
+ YText as Text,
133
+ Transaction,
134
+ UndoManager,
135
+ UpdateDecoderV1,
136
+ UpdateDecoderV2,
137
+ UpdateEncoderV1,
138
+ UpdateEncoderV2,
139
+ YXmlElement as XmlElement,
140
+ YXmlFragment as XmlFragment,
141
+ YXmlHook as XmlHook,
142
+ YXmlText as XmlText,
143
+ YArrayEvent,
144
+ YEvent,
145
+ YMapEvent,
146
+ YTextEvent,
147
+ YXmlEvent,
148
+ applyUpdate,
149
+ applyUpdateV2,
150
+ cleanupYTextFormatting,
151
+ compareIDs,
152
+ compareRelativePositions,
153
+ convertUpdateFormatV1ToV2,
154
+ convertUpdateFormatV2ToV1,
155
+ createAbsolutePositionFromRelativePosition,
156
+ createDeleteSet,
157
+ createDeleteSetFromStructStore,
158
+ createDocFromSnapshot,
159
+ createID,
160
+ createRelativePositionFromJSON,
161
+ createRelativePositionFromTypeIndex,
162
+ createSnapshot,
163
+ decodeRelativePosition,
164
+ decodeSnapshot,
165
+ decodeSnapshotV2,
166
+ decodeStateVector,
167
+ decodeUpdate,
168
+ decodeUpdateV2,
169
+ diffUpdate,
170
+ diffUpdateV2,
171
+ emptySnapshot,
172
+ encodeRelativePosition,
173
+ encodeSnapshot,
174
+ encodeSnapshotV2,
175
+ encodeStateAsUpdate,
176
+ encodeStateAsUpdateV2,
177
+ encodeStateVector,
178
+ encodeStateVectorFromUpdate,
179
+ encodeStateVectorFromUpdateV2,
180
+ equalDeleteSets,
181
+ equalSnapshots,
182
+ findIndexSS,
183
+ findRootTypeKey,
184
+ getItem,
185
+ getItemCleanEnd,
186
+ getItemCleanStart,
187
+ getState,
188
+ getTypeChildren,
189
+ isDeleted,
190
+ isParentOf,
191
+ iterateDeletedStructs,
192
+ logType,
193
+ logUpdate,
194
+ logUpdateV2,
195
+ mergeDeleteSets,
196
+ mergeUpdates,
197
+ mergeUpdatesV2,
198
+ obfuscateUpdate,
199
+ obfuscateUpdateV2,
200
+ parseUpdateMeta,
201
+ parseUpdateMetaV2,
202
+ readUpdate,
203
+ readUpdateV2,
204
+ relativePositionToJSON,
205
+ snapshot,
206
+ snapshotContainsUpdate,
207
+ transact,
208
+ tryGc,
209
+ typeListToArraySnapshot,
210
+ typeMapGetAllSnapshot,
211
+ typeMapGetSnapshot
212
+ };
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "vibewithme",
3
+ "version": "0.1.0",
4
+ "description": "Collaborative terminal IDE for vibe coding. Figma meets v0, in your terminal.",
5
+ "type": "module",
6
+ "bin": {
7
+ "vibewithme": "./dist/bin.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "keywords": [
13
+ "cli",
14
+ "terminal",
15
+ "tui",
16
+ "collaborative",
17
+ "ide",
18
+ "vibe-coding",
19
+ "claude",
20
+ "ai",
21
+ "react",
22
+ "ink"
23
+ ],
24
+ "author": "Pat <pat@joinaccelr8.com>",
25
+ "license": "MIT",
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/Patonchain/vibewithme.git",
29
+ "directory": "packages/cli"
30
+ },
31
+ "homepage": "https://github.com/Patonchain/vibewithme",
32
+ "bugs": {
33
+ "url": "https://github.com/Patonchain/vibewithme/issues"
34
+ },
35
+ "engines": {
36
+ "node": ">=20"
37
+ },
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "dev": "tsup --watch",
41
+ "clean": "rm -rf dist",
42
+ "prepublishOnly": "npm run build"
43
+ },
44
+ "devDependencies": {
45
+ "@types/react": "^19.0.0",
46
+ "tsup": "^8.3.0",
47
+ "typescript": "^5.7.0"
48
+ },
49
+ "dependencies": {
50
+ "@vibewithme/tui": "*",
51
+ "@vibewithme/shared": "*",
52
+ "commander": "^13.0.0",
53
+ "ink": "^6.0.0",
54
+ "react": "^19.0.0"
55
+ }
56
+ }