@reifydb/client 0.1.4 → 0.1.6

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 +14 -15
package/package.json CHANGED
@@ -1,24 +1,13 @@
1
1
  {
2
2
  "name": "@reifydb/client",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
- "scripts": {
8
- "build": "tsup src/index.ts --dts --format esm --sourcemap",
9
- "test": "pnpm test:integration",
10
- "test:integration": "vitest run --config vitest.config.ts",
11
- "test:integration:watch": "vitest --config vitest.config.ts",
12
- "test:integration:coverage": "vitest run --coverage --config vitest.config.ts",
13
- "test:coverage": "pnpm test:integration:coverage",
14
- "pretest:integration": "pnpm build",
15
- "prepublishOnly": "pnpm build",
16
- "publish:npm": "pnpm publish --access public"
17
- },
18
7
  "dependencies": {
19
- "@reifydb/core": "workspace:*",
20
8
  "uuid": "^11.1.0",
21
- "ws": "^8.18.3"
9
+ "ws": "^8.18.3",
10
+ "@reifydb/core": "0.1.6"
22
11
  },
23
12
  "devDependencies": {
24
13
  "@types/node": "^24.0.10",
@@ -56,5 +45,15 @@
56
45
  "homepage": "https://github.com/reifydb/reifydb#readme",
57
46
  "bugs": {
58
47
  "url": "https://github.com/reifydb/reifydb/issues"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup src/index.ts --dts --format esm --sourcemap",
51
+ "test": "pnpm test:integration",
52
+ "test:integration": "vitest run --config vitest.config.ts",
53
+ "test:integration:watch": "vitest --config vitest.config.ts",
54
+ "test:integration:coverage": "vitest run --coverage --config vitest.config.ts",
55
+ "test:coverage": "pnpm test:integration:coverage",
56
+ "pretest:integration": "pnpm build",
57
+ "publish:npm": "pnpm publish --access public"
59
58
  }
60
- }
59
+ }