@teamkeel/functions-runtime 0.236.1 → 0.236.3

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/compose.yaml ADDED
@@ -0,0 +1,10 @@
1
+ services:
2
+ postgres:
3
+ image: postgres:11.13-alpine
4
+ restart: always
5
+ environment:
6
+ - POSTGRES_USER=postgres
7
+ - POSTGRES_PASSWORD=postgres
8
+ - POSTGRES_DB=functions-runtime
9
+ ports:
10
+ - "5432:5432"
package/package.json CHANGED
@@ -1,45 +1,30 @@
1
1
  {
2
2
  "name": "@teamkeel/functions-runtime",
3
- "version": "0.236.1",
3
+ "version": "0.236.3",
4
4
  "description": "Internal package used by @teamkeel/sdk",
5
- "main": "dist/index.js",
5
+ "main": "src/index.js",
6
6
  "scripts": {
7
- "build": "node build.mjs",
8
- "prepublishOnly": "npm run build",
9
- "test": "jest",
10
- "lint": "npx prettier --write ."
7
+ "test": "vitest run --reporter verbose",
8
+ "format": "npx prettier --write src/**/*.js"
11
9
  },
12
10
  "keywords": [],
13
11
  "author": "Adam Bull (adam@keel.xyz)",
14
12
  "license": "ISC",
15
- "typings": "dist/index.d.ts",
13
+ "typings": "src/index.d.ts",
16
14
  "publishConfig": {
17
15
  "access": "public"
18
16
  },
19
- "files": [
20
- "dist"
21
- ],
22
17
  "devDependencies": {
23
- "@types/commander": "^2.12.2",
24
- "@types/jest": "^28.1.6",
25
- "@types/node": "^18.11.9",
26
- "esbuild": "^0.14.53",
27
- "jest": "^28.1.3",
28
- "npm-dts": "^1.3.12",
29
18
  "prettier": "2.7.1",
30
- "ts-jest": "^28.0.7",
31
- "ts-node": "^10.9.1"
19
+ "vitest": "^0.27.1"
32
20
  },
33
21
  "dependencies": {
34
- "@aws-sdk/client-rds-data": "^3.200.0",
35
- "@structured-types/api": "^3.46.12",
36
- "@types/pg": "^8.6.5",
37
- "chalk": "^4.1.2",
22
+ "aws-sdk": "^2.1295.0",
38
23
  "change-case": "^4.1.2",
39
- "commander": "^9.4.1",
40
24
  "json-rpc-2.0": "^1.4.1",
41
25
  "ksuid": "^3.0.0",
42
- "node-fetch": "^3.2.10",
26
+ "kysely": "^0.23.4",
27
+ "kysely-data-api": "^0.1.4",
43
28
  "pg": "^8.8.0"
44
29
  }
45
30
  }