@replayci/replay 0.1.0

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/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@replayci/replay",
3
+ "version": "0.1.0",
4
+ "description": "ReplayCI SDK for deterministic tool-call validation and observation.",
5
+ "license": "ISC",
6
+ "author": "ReplayCI",
7
+ "type": "module",
8
+ "main": "dist/index.cjs",
9
+ "module": "dist/index.js",
10
+ "types": "dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.js",
15
+ "require": "./dist/index.cjs"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist/",
20
+ "README.md"
21
+ ],
22
+ "engines": {
23
+ "node": ">=18"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/sparshbaluni07/replayci.git",
31
+ "directory": "packages/replay"
32
+ },
33
+ "homepage": "https://docs.replayci.com",
34
+ "bugs": {
35
+ "url": "https://github.com/sparshbaluni07/replayci/issues"
36
+ },
37
+ "keywords": [
38
+ "llm",
39
+ "tool-calling",
40
+ "validation",
41
+ "observe",
42
+ "openai",
43
+ "anthropic",
44
+ "replayci"
45
+ ],
46
+ "scripts": {
47
+ "build": "tsup src/index.ts --format cjs,esm --dts",
48
+ "prepublishOnly": "npm run build",
49
+ "typecheck": "tsc --noEmit",
50
+ "test": "vitest run"
51
+ },
52
+ "dependencies": {
53
+ "@replayci/contracts-core": "^0.1.0",
54
+ "yaml": "^2.0.0"
55
+ },
56
+ "peerDependencies": {
57
+ "openai": ">=4.0.0",
58
+ "@anthropic-ai/sdk": ">=0.20.0"
59
+ },
60
+ "peerDependenciesMeta": {
61
+ "openai": {
62
+ "optional": true
63
+ },
64
+ "@anthropic-ai/sdk": {
65
+ "optional": true
66
+ }
67
+ },
68
+ "optionalDependencies": {
69
+ "re2": "^1.20.0"
70
+ },
71
+ "devDependencies": {
72
+ "tsup": "^8.5.0",
73
+ "typescript": "^5.9.3",
74
+ "vitest": "^4.0.16"
75
+ }
76
+ }