@vaiftechnologies/vaif-client 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.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@vaiftechnologies/vaif-client",
3
+ "version": "0.1.0",
4
+ "description": "Official VAIF Studio client library for JavaScript and TypeScript",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
21
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
22
+ "lint": "eslint src --ext .ts",
23
+ "test": "vitest",
24
+ "prepublishOnly": "pnpm build"
25
+ },
26
+ "keywords": [
27
+ "vaif",
28
+ "vaif-studio",
29
+ "backend",
30
+ "database",
31
+ "api",
32
+ "realtime",
33
+ "supabase-alternative",
34
+ "typescript"
35
+ ],
36
+ "author": "VAIF Technologies",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/vaifllc/vaif-studio.git",
41
+ "directory": "packages/sdk-js"
42
+ },
43
+ "homepage": "https://vaif.studio/docs/sdk/javascript",
44
+ "bugs": {
45
+ "url": "https://github.com/vaifllc/vaif-studio/issues"
46
+ },
47
+ "devDependencies": {
48
+ "@types/node": "^20.0.0",
49
+ "tsup": "^8.0.0",
50
+ "typescript": "^5.3.0",
51
+ "vitest": "^1.0.0"
52
+ },
53
+ "peerDependencies": {
54
+ "typescript": ">=4.7.0"
55
+ },
56
+ "peerDependenciesMeta": {
57
+ "typescript": {
58
+ "optional": true
59
+ }
60
+ },
61
+ "engines": {
62
+ "node": ">=16.0.0"
63
+ }
64
+ }