@xylex-group/athena 0.2.1 → 1.0.4
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 +294 -103
- package/bin/athena-js.js +1 -1
- package/dist/index.d.mts +51 -25
- package/dist/index.d.ts +51 -25
- package/dist/index.js +193 -79
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +192 -80
- package/dist/index.mjs.map +1 -1
- package/dist/react.d.mts +2 -2
- package/dist/react.d.ts +2 -2
- package/dist/react.js +21 -32
- package/dist/react.js.map +1 -1
- package/dist/react.mjs +21 -32
- package/dist/react.mjs.map +1 -1
- package/dist/{types-DzCf3v76.d.mts → types-D0uYdUea.d.mts} +30 -7
- package/dist/{types-DzCf3v76.d.ts → types-D0uYdUea.d.ts} +30 -7
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xylex-group/athena",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Athena SDK",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "tsup",
|
|
31
31
|
"dev": "tsup --watch",
|
|
32
|
-
"test": "node --test test
|
|
33
|
-
"test:watch": "node --test --watch test
|
|
34
|
-
"lint": "eslint \"src/**/*.ts\" \"
|
|
32
|
+
"test": "node --test test/*.test.ts",
|
|
33
|
+
"test:watch": "node --test --watch test/*.test.ts",
|
|
34
|
+
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
35
35
|
"lint:fix": "npm run lint -- --fix",
|
|
36
36
|
"prepublishOnly": "npm run build",
|
|
37
37
|
"publish:token": "node scripts/publish.js",
|
|
@@ -41,7 +41,6 @@
|
|
|
41
41
|
"example:retry-patterns": "cd examples/retry-patterns && bun run start",
|
|
42
42
|
"example:email-resend": "cd examples/email-resend && bun run start",
|
|
43
43
|
"example:api-call": "cd examples/api-call && bun run start",
|
|
44
|
-
"example:supabase-fetch": "cd examples/supabase-fetch && bun run start",
|
|
45
44
|
"example:postgres-connection": "cd examples/postgres-connection && bun run start"
|
|
46
45
|
},
|
|
47
46
|
"keywords": [
|
|
@@ -53,7 +52,6 @@
|
|
|
53
52
|
"hooks",
|
|
54
53
|
"http",
|
|
55
54
|
"postgres",
|
|
56
|
-
"supabase",
|
|
57
55
|
"query-builder"
|
|
58
56
|
],
|
|
59
57
|
"author": "floris@xylex.group",
|
|
@@ -61,9 +59,10 @@
|
|
|
61
59
|
"license": "MIT",
|
|
62
60
|
"repository": {
|
|
63
61
|
"type": "git",
|
|
64
|
-
"url": "https://github.com/xylex-group/athena-js"
|
|
62
|
+
"url": "git+https://github.com/xylex-group/athena-js.git"
|
|
65
63
|
},
|
|
66
64
|
"dependencies": {
|
|
65
|
+
"@xylex-group/athena": "^0.2.1",
|
|
67
66
|
"blessed": "^0.1.81",
|
|
68
67
|
"chalk": "^4.1.2",
|
|
69
68
|
"cron-parser": "^4.9.0",
|