@sqldoc/db 0.0.3 → 0.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.
Files changed (1) hide show
  1. package/package.json +5 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@sqldoc/db",
4
- "version": "0.0.3",
4
+ "version": "0.0.4",
5
5
  "description": "Atlas WASI integration for sqldoc -- schema types, database adapters, WASI runner",
6
6
  "exports": {
7
7
  ".": {
@@ -20,7 +20,7 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "test": "node --test 'src/__tests__/**/*.test.ts'",
23
- "typecheck": "tsc --noEmit",
23
+ "typecheck": "tsgo -noEmit",
24
24
  "build:wasm": "cd ../../../atlastest/atlas/cmd/atlas-wasi && GOOS=wasip1 GOARCH=wasm go build -o atlas.wasm . && cp atlas.wasm ../../../../sqldoc/packages/db/wasm/atlas.wasm",
25
25
  "codegen:schema": "echo 'Types hand-crafted from atlas/sql/schema/schema.go -- see src/types.ts. tygo cannot handle Go interfaces (Attr, Type, Expr). Re-read schema.go and update src/types.ts manually when the Go source changes.'"
26
26
  },
@@ -29,13 +29,13 @@
29
29
  "@testcontainers/postgresql": "^11.13.0",
30
30
  "mysql2": "^3.20.0",
31
31
  "pg": "^8.13.0",
32
- "picocolors": "catalog:",
32
+ "picocolors": "1.1.1",
33
33
  "testcontainers": "^11.13.0"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/pg": "^8.11.0",
37
37
  "tsx": "^4.21.0",
38
- "typescript": "catalog:",
39
- "@sqldoc/test-utils": "workspace:*"
38
+ "@typescript/native-preview": "latest",
39
+ "@sqldoc/test-utils": "0.0.1"
40
40
  }
41
41
  }