@proma-dev/sdk 0.1.6 → 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/package.json CHANGED
@@ -1,31 +1,31 @@
1
1
  {
2
2
  "name": "@proma-dev/sdk",
3
- "version": "0.1.6",
4
- "description": "Connect your app to the Proma marketplace — auth, credits, and AI in a few lines of code",
3
+ "version": "0.3.0",
5
4
  "private": false,
5
+ "description": "Connect your app to the Proma marketplace — auth, credits, and AI in a few lines of code",
6
+ "keywords": [
7
+ "ai",
8
+ "credits",
9
+ "lovable",
10
+ "marketplace",
11
+ "oauth",
12
+ "proma",
13
+ "supabase"
14
+ ],
15
+ "homepage": "https://proma.dev",
6
16
  "license": "MIT",
7
17
  "repository": {
8
18
  "type": "git",
9
19
  "url": "https://github.com/proma-dev/proma",
10
20
  "directory": "packages/sdk"
11
21
  },
12
- "homepage": "https://proma.dev",
13
- "keywords": [
14
- "proma",
15
- "supabase",
16
- "oauth",
17
- "marketplace",
18
- "credits",
19
- "ai",
20
- "lovable"
21
- ],
22
- "sideEffects": false,
23
22
  "files": [
24
23
  "dist",
25
24
  "README.md",
26
25
  "LICENSE"
27
26
  ],
28
27
  "type": "module",
28
+ "sideEffects": false,
29
29
  "main": "./dist/index.cjs",
30
30
  "module": "./dist/index.js",
31
31
  "types": "./dist/index.d.ts",
@@ -50,12 +50,17 @@
50
50
  "publishConfig": {
51
51
  "access": "public"
52
52
  },
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "dev": "tsup --watch",
56
+ "typecheck": "tsc --noEmit"
57
+ },
53
58
  "devDependencies": {
54
- "@types/react": "19.2.14",
55
- "react": "19.2.4",
56
- "tsup": "8.5.1",
57
- "typescript": "^6.0.2",
58
- "@kit/tsconfig": "0.1.0"
59
+ "@kit/tsconfig": "workspace:*",
60
+ "@types/react": "catalog:",
61
+ "react": "catalog:",
62
+ "tsup": "catalog:",
63
+ "typescript": "catalog:"
59
64
  },
60
65
  "peerDependencies": {
61
66
  "react": ">=18"
@@ -64,10 +69,5 @@
64
69
  "react": {
65
70
  "optional": true
66
71
  }
67
- },
68
- "scripts": {
69
- "build": "tsup",
70
- "dev": "tsup --watch",
71
- "typecheck": "tsc --noEmit"
72
72
  }
73
- }
73
+ }