-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@sapliyio/fintech-testing",
"version": "1.0.0",
"description": "Test utilities for Sapliy Fintech Ecosystem - mock servers, fixtures, and assertions",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mocks": {
"import": "./dist/mocks/index.mjs",
"require": "./dist/mocks/index.js",
"types": "./dist/mocks/index.d.ts"
},
"./fixtures": {
"import": "./dist/fixtures/index.mjs",
"require": "./dist/fixtures/index.js",
"types": "./dist/fixtures/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@sapliyio/fintech": "file:../fintech-sdk-node",
"msw": "^2.2.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/ws": "^8.18.1",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.2.0",
"ws": "^8.19.0"
},
"peerDependenciesMeta": {
"@sapliyio/fintech": {
"optional": true
}
}
}