@persql/sdk 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/dist/index.js ADDED
@@ -0,0 +1,25 @@
1
+ import {
2
+ ApprovalRequiredError,
3
+ PerSQL,
4
+ PerSQLApprovals,
5
+ PerSQLBlob,
6
+ PerSQLBranches,
7
+ PerSQLDatabase,
8
+ PerSQLError,
9
+ PerSQLProposals,
10
+ PerSQLVectors,
11
+ RateLimitError
12
+ } from "./chunk-CDNTQOBK.js";
13
+ export {
14
+ ApprovalRequiredError,
15
+ PerSQL,
16
+ PerSQLApprovals,
17
+ PerSQLBlob,
18
+ PerSQLBranches,
19
+ PerSQLDatabase,
20
+ PerSQLError,
21
+ PerSQLProposals,
22
+ PerSQLVectors,
23
+ RateLimitError
24
+ };
25
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@persql/sdk",
3
+ "version": "0.1.0",
4
+ "description": "TypeScript SDK for PerSQL — SQLite databases on the edge for AI agents",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs"
15
+ }
16
+ },
17
+ "bin": {
18
+ "persql-codegen": "./dist/cli.js"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "devDependencies": {
25
+ "@types/better-sqlite3": "^7.6.12",
26
+ "@types/node": "^22.10.0",
27
+ "better-sqlite3": "^11.7.0",
28
+ "tsup": "^8.4.0",
29
+ "typescript": "^5.8.3",
30
+ "vitest": "^3.1.1"
31
+ },
32
+ "peerDependencies": {
33
+ "better-sqlite3": "^11.0.0"
34
+ },
35
+ "peerDependenciesMeta": {
36
+ "better-sqlite3": {
37
+ "optional": true
38
+ }
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "keywords": [
44
+ "sqlite",
45
+ "ai-agents",
46
+ "database",
47
+ "cloudflare",
48
+ "edge"
49
+ ],
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "typecheck": "tsc --noEmit",
53
+ "test": "vitest run",
54
+ "clean": "rm -rf dist"
55
+ }
56
+ }