@durable-streams/client-conformance-tests 0.1.1 → 0.1.2
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/dist/adapters/typescript-adapter.cjs +588 -0
- package/dist/adapters/typescript-adapter.d.cts +1 -0
- package/dist/benchmark-runner-CLAR9oLd.cjs +1400 -0
- package/dist/chunk-BCwAaXi7.cjs +31 -0
- package/dist/cli.cjs +266 -0
- package/dist/cli.d.cts +1 -0
- package/dist/index.cjs +22 -0
- package/dist/index.d.cts +508 -0
- package/dist/protocol-3cf94Xyb.d.cts +472 -0
- package/dist/protocol-XeAOKBD-.cjs +175 -0
- package/dist/protocol.cjs +11 -0
- package/dist/protocol.d.cts +2 -0
- package/package.json +51 -36
package/package.json
CHANGED
|
@@ -1,67 +1,82 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@durable-streams/client-conformance-tests",
|
|
3
|
-
"version": "0.1.1",
|
|
4
3
|
"description": "Conformance test suite for Durable Streams client implementations (producer and consumer)",
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"author": "Durable Stream contributors",
|
|
6
|
-
"license": "Apache-2.0",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/durable-streams/durable-streams.git",
|
|
10
|
-
"directory": "packages/client-conformance-tests"
|
|
11
|
-
},
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/durable-streams/durable-streams/issues"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"durable-streams",
|
|
17
|
-
"conformance",
|
|
18
|
-
"testing",
|
|
19
|
-
"typescript"
|
|
20
|
-
],
|
|
21
|
-
"type": "module",
|
|
22
|
-
"main": "./dist/index.js",
|
|
23
|
-
"types": "./dist/index.d.ts",
|
|
24
6
|
"bin": {
|
|
25
7
|
"durable-streams-client-conformance": "./dist/cli.js"
|
|
26
8
|
},
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"import": "./dist/index.js",
|
|
30
|
-
"types": "./dist/index.d.ts"
|
|
31
|
-
},
|
|
32
|
-
"./protocol": {
|
|
33
|
-
"import": "./dist/protocol.js",
|
|
34
|
-
"types": "./dist/protocol.d.ts"
|
|
35
|
-
}
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/durable-streams/durable-streams/issues"
|
|
36
11
|
},
|
|
37
12
|
"dependencies": {
|
|
38
13
|
"fast-check": "^4.4.0",
|
|
39
14
|
"tsx": "^4.19.2",
|
|
40
15
|
"yaml": "^2.7.1",
|
|
41
|
-
"@durable-streams/client": "0.1.
|
|
42
|
-
"@durable-streams/server": "0.1.
|
|
16
|
+
"@durable-streams/client": "0.1.2",
|
|
17
|
+
"@durable-streams/server": "0.1.2"
|
|
43
18
|
},
|
|
44
19
|
"devDependencies": {
|
|
45
20
|
"tsdown": "^0.9.0",
|
|
46
21
|
"typescript": "^5.0.0"
|
|
47
22
|
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=20.11.0"
|
|
25
|
+
},
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"import": {
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"default": "./dist/index.js"
|
|
31
|
+
},
|
|
32
|
+
"require": {
|
|
33
|
+
"types": "./dist/index.d.cts",
|
|
34
|
+
"default": "./dist/index.cjs"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"./protocol": {
|
|
38
|
+
"import": {
|
|
39
|
+
"types": "./dist/protocol.d.ts",
|
|
40
|
+
"default": "./dist/protocol.js"
|
|
41
|
+
},
|
|
42
|
+
"require": {
|
|
43
|
+
"types": "./dist/protocol.d.cts",
|
|
44
|
+
"default": "./dist/protocol.cjs"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"./package.json": "./package.json"
|
|
48
|
+
},
|
|
48
49
|
"files": [
|
|
49
50
|
"dist",
|
|
50
51
|
"src",
|
|
51
52
|
"test-cases"
|
|
52
53
|
],
|
|
53
|
-
"
|
|
54
|
-
"
|
|
54
|
+
"keywords": [
|
|
55
|
+
"conformance",
|
|
56
|
+
"durable-streams",
|
|
57
|
+
"testing",
|
|
58
|
+
"typescript"
|
|
59
|
+
],
|
|
60
|
+
"license": "Apache-2.0",
|
|
61
|
+
"main": "./dist/index.cjs",
|
|
62
|
+
"module": "./dist/index.js",
|
|
63
|
+
"repository": {
|
|
64
|
+
"type": "git",
|
|
65
|
+
"url": "git+https://github.com/durable-streams/durable-streams.git",
|
|
66
|
+
"directory": "packages/client-conformance-tests"
|
|
55
67
|
},
|
|
68
|
+
"sideEffects": false,
|
|
69
|
+
"type": "module",
|
|
70
|
+
"types": "./dist/index.d.ts",
|
|
56
71
|
"scripts": {
|
|
57
72
|
"build": "tsdown",
|
|
58
73
|
"dev": "tsdown --watch",
|
|
59
|
-
"typecheck": "tsc --noEmit",
|
|
60
74
|
"test:run": "tsx src/cli.ts --run ts",
|
|
61
|
-
"test:run:verbose": "tsx src/cli.ts --run ts --verbose",
|
|
62
75
|
"test:run:python": "tsx src/cli.ts --run ../client-py/run-conformance-adapter.sh",
|
|
63
|
-
"test:run:python:verbose": "tsx src/cli.ts --run ../client-py/run-conformance-adapter.sh --verbose",
|
|
64
76
|
"test:run:python-async": "tsx src/cli.ts --run ../client-py/run-conformance-adapter-async.sh",
|
|
65
|
-
"test:run:python-async:verbose": "tsx src/cli.ts --run ../client-py/run-conformance-adapter-async.sh --verbose"
|
|
77
|
+
"test:run:python-async:verbose": "tsx src/cli.ts --run ../client-py/run-conformance-adapter-async.sh --verbose",
|
|
78
|
+
"test:run:python:verbose": "tsx src/cli.ts --run ../client-py/run-conformance-adapter.sh --verbose",
|
|
79
|
+
"test:run:verbose": "tsx src/cli.ts --run ts --verbose",
|
|
80
|
+
"typecheck": "tsc --noEmit"
|
|
66
81
|
}
|
|
67
82
|
}
|