@ripplo/testing 0.0.1

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,94 @@
1
+ {
2
+ "name": "@ripplo/testing",
3
+ "description": "TypeScript DSL for defining and running Ripplo e2e workflow tests",
4
+ "version": "0.0.1",
5
+ "type": "module",
6
+ "files": [
7
+ "dist"
8
+ ],
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./actions": {
16
+ "types": "./dist/actions.d.ts",
17
+ "import": "./dist/actions.js",
18
+ "default": "./dist/actions.js"
19
+ },
20
+ "./assert": {
21
+ "types": "./dist/assert.d.ts",
22
+ "import": "./dist/assert.js",
23
+ "default": "./dist/assert.js"
24
+ },
25
+ "./control": {
26
+ "types": "./dist/control.d.ts",
27
+ "import": "./dist/control.js",
28
+ "default": "./dist/control.js"
29
+ },
30
+ "./locators": {
31
+ "types": "./dist/locators.d.ts",
32
+ "import": "./dist/locators.js",
33
+ "default": "./dist/locators.js"
34
+ },
35
+ "./compiler": {
36
+ "types": "./dist/compiler.d.ts",
37
+ "import": "./dist/compiler.js",
38
+ "default": "./dist/compiler.js"
39
+ },
40
+ "./express": {
41
+ "types": "./dist/express.d.ts",
42
+ "import": "./dist/express.js",
43
+ "default": "./dist/express.js"
44
+ },
45
+ "./fastify": {
46
+ "types": "./dist/fastify.d.ts",
47
+ "import": "./dist/fastify.js",
48
+ "default": "./dist/fastify.js"
49
+ },
50
+ "./nextjs": {
51
+ "types": "./dist/nextjs.d.ts",
52
+ "import": "./dist/nextjs.js",
53
+ "default": "./dist/nextjs.js"
54
+ }
55
+ },
56
+ "dependencies": {
57
+ "standardwebhooks": "^1.0.0",
58
+ "zod": "^4.3.6"
59
+ },
60
+ "devDependencies": {
61
+ "@types/express": "^5.0.2",
62
+ "@types/node": "^22.15.3",
63
+ "eslint": "^9.39.1",
64
+ "express": "^5.1.0",
65
+ "fastify": "^5.3.3",
66
+ "tsup": "^8.5.1",
67
+ "typescript": "^5.9.3",
68
+ "vitest": "^4.1.4",
69
+ "@ripplo/eslint-config": "0.0.0",
70
+ "@ripplo/spec": "^0.0.0"
71
+ },
72
+ "peerDependencies": {
73
+ "dotenv": "^16.0.0 || ^17.0.0",
74
+ "express": "^4.0.0 || ^5.0.0",
75
+ "fastify": "^5.0.0"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "dotenv": {
79
+ "optional": true
80
+ },
81
+ "express": {
82
+ "optional": true
83
+ },
84
+ "fastify": {
85
+ "optional": true
86
+ }
87
+ },
88
+ "scripts": {
89
+ "build": "tsup",
90
+ "check-types": "tsc --noEmit",
91
+ "lint": "eslint src",
92
+ "test": "vitest run"
93
+ }
94
+ }