@anysoftinc/anydb-sdk 0.1.1
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/README.md +336 -0
- package/dist/client.d.ts +167 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +397 -0
- package/dist/nextauth-adapter.d.ts +23 -0
- package/dist/nextauth-adapter.d.ts.map +1 -0
- package/dist/nextauth-adapter.js +340 -0
- package/dist/query-builder.d.ts +126 -0
- package/dist/query-builder.d.ts.map +1 -0
- package/dist/query-builder.js +207 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@anysoftinc/anydb-sdk",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "AnyDB TypeScript SDK for querying and transacting with Datomic databases",
|
|
5
|
+
"main": "dist/client.js",
|
|
6
|
+
"types": "dist/client.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/**/*",
|
|
9
|
+
"README.md",
|
|
10
|
+
"package.json"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/client.js",
|
|
15
|
+
"require": "./dist/client.js",
|
|
16
|
+
"types": "./dist/client.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./nextauth-adapter": {
|
|
19
|
+
"import": "./dist/nextauth-adapter.js",
|
|
20
|
+
"require": "./dist/nextauth-adapter.js",
|
|
21
|
+
"types": "./dist/nextauth-adapter.d.ts"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsc",
|
|
26
|
+
"dev": "tsc --watch",
|
|
27
|
+
"prepublishOnly": "npm run build",
|
|
28
|
+
"test": "jest",
|
|
29
|
+
"test:watch": "jest --watch",
|
|
30
|
+
"test:coverage": "jest --coverage",
|
|
31
|
+
"clean": "rm -rf dist"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"edn-data": "^1.1.2"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"next-auth": "^4.24.0 || ^5.0.0-beta"
|
|
38
|
+
},
|
|
39
|
+
"peerDependenciesMeta": {
|
|
40
|
+
"next-auth": {
|
|
41
|
+
"optional": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/jest": "^29.5.12",
|
|
46
|
+
"@types/node": "^20",
|
|
47
|
+
"jest": "^29.7.0",
|
|
48
|
+
"next-auth": "^4.24.11",
|
|
49
|
+
"ts-jest": "^29.1.4",
|
|
50
|
+
"typescript": "^5"
|
|
51
|
+
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"datomic",
|
|
54
|
+
"database",
|
|
55
|
+
"sdk",
|
|
56
|
+
"typescript",
|
|
57
|
+
"anydb"
|
|
58
|
+
],
|
|
59
|
+
"author": "Anysoft Inc",
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "https://github.com/anysoftinc/anydb"
|
|
64
|
+
}
|
|
65
|
+
}
|