@vibevibes/sdk 0.1.0 → 0.3.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.
- package/LICENSE +21 -0
- package/README.md +200 -0
- package/dist/index.cjs +67 -688
- package/dist/index.d.cts +85 -501
- package/dist/index.d.ts +85 -501
- package/dist/index.js +64 -665
- package/package.json +69 -63
package/package.json
CHANGED
|
@@ -1,63 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@vibevibes/sdk",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"module": "./dist/index.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.js",
|
|
13
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist"
|
|
18
|
-
],
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsup
|
|
21
|
-
"dev": "tsup
|
|
22
|
-
"test": "vitest run",
|
|
23
|
-
"typecheck": "tsc --noEmit",
|
|
24
|
-
"clean": "rm -rf dist",
|
|
25
|
-
"prepublishOnly": "npm run build"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"zod": "^3.22.4"
|
|
29
|
-
},
|
|
30
|
-
"peerDependencies": {
|
|
31
|
-
"react": "^18.2.0 || ^19.0.0",
|
|
32
|
-
"yjs": "^13.6.10"
|
|
33
|
-
},
|
|
34
|
-
"peerDependenciesMeta": {
|
|
35
|
-
"yjs": {
|
|
36
|
-
"optional": true
|
|
37
|
-
}
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@types/react": "^18.2.48",
|
|
41
|
-
"react": "^18.2.0",
|
|
42
|
-
"tsup": "^8.0.1",
|
|
43
|
-
"typescript": "^5.3.3",
|
|
44
|
-
"vitest": "^4.0.18",
|
|
45
|
-
"yjs": "^13.6.10"
|
|
46
|
-
},
|
|
47
|
-
"publishConfig": {
|
|
48
|
-
"access": "public"
|
|
49
|
-
},
|
|
50
|
-
"repository": {
|
|
51
|
-
"type": "git",
|
|
52
|
-
"url": "https://github.com/vibevibes/
|
|
53
|
-
},
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@vibevibes/sdk",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Define shared human-AI experiences — tools, canvas, state",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"scripts": {
|
|
20
|
+
"build": "tsup",
|
|
21
|
+
"dev": "tsup --watch",
|
|
22
|
+
"test": "vitest run",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"clean": "rm -rf dist",
|
|
25
|
+
"prepublishOnly": "npm run build"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"zod": "^3.22.4"
|
|
29
|
+
},
|
|
30
|
+
"peerDependencies": {
|
|
31
|
+
"react": "^18.2.0 || ^19.0.0",
|
|
32
|
+
"yjs": "^13.6.10"
|
|
33
|
+
},
|
|
34
|
+
"peerDependenciesMeta": {
|
|
35
|
+
"yjs": {
|
|
36
|
+
"optional": true
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/react": "^18.2.48",
|
|
41
|
+
"react": "^18.2.0",
|
|
42
|
+
"tsup": "^8.0.1",
|
|
43
|
+
"typescript": "^5.3.3",
|
|
44
|
+
"vitest": "^4.0.18",
|
|
45
|
+
"yjs": "^13.6.10"
|
|
46
|
+
},
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public"
|
|
49
|
+
},
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/vibevibes/sdk"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://github.com/vibevibes/sdk#readme",
|
|
55
|
+
"author": "EgemennSahin",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"keywords": [
|
|
58
|
+
"vibevibes",
|
|
59
|
+
"experience",
|
|
60
|
+
"sdk",
|
|
61
|
+
"multiplayer",
|
|
62
|
+
"collaborative",
|
|
63
|
+
"ai-native",
|
|
64
|
+
"mcp",
|
|
65
|
+
"shared-state",
|
|
66
|
+
"real-time",
|
|
67
|
+
"human-ai"
|
|
68
|
+
]
|
|
69
|
+
}
|