-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.04 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.04 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "walutomat-sdk",
"version": "0.2.0",
"description": "Unofficial TypeScript client for the Walutomat API v2.0.0",
"keywords": [
"api",
"currency",
"exchange",
"sdk",
"walutomat"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/letehaha/walutomat-sdk.git",
"directory": "packages/typescript"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./account": {
"import": {
"types": "./dist/endpoints/account.d.ts",
"default": "./dist/endpoints/account.js"
},
"require": {
"types": "./dist/cjs/endpoints/account.d.ts",
"default": "./dist/cjs/endpoints/account.js"
}
},
"./transfers": {
"import": {
"types": "./dist/endpoints/transfers.d.ts",
"default": "./dist/endpoints/transfers.js"
},
"require": {
"types": "./dist/cjs/endpoints/transfers.d.ts",
"default": "./dist/cjs/endpoints/transfers.js"
}
},
"./direct-fx": {
"import": {
"types": "./dist/endpoints/direct-fx.d.ts",
"default": "./dist/endpoints/direct-fx.js"
},
"require": {
"types": "./dist/cjs/endpoints/direct-fx.d.ts",
"default": "./dist/cjs/endpoints/direct-fx.js"
}
},
"./market-fx": {
"import": {
"types": "./dist/endpoints/market-fx.d.ts",
"default": "./dist/endpoints/market-fx.js"
},
"require": {
"types": "./dist/cjs/endpoints/market-fx.d.ts",
"default": "./dist/cjs/endpoints/market-fx.js"
}
},
"./auth": {
"import": {
"types": "./dist/auth.d.ts",
"default": "./dist/auth.js"
},
"require": {
"types": "./dist/cjs/auth.d.ts",
"default": "./dist/cjs/auth.js"
}
},
"./errors": {
"import": {
"types": "./dist/errors.d.ts",
"default": "./dist/errors.js"
},
"require": {
"types": "./dist/cjs/errors.d.ts",
"default": "./dist/cjs/errors.js"
}
},
"./types": {
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.cjs.build.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude 'src/__integration__/**'",
"test:watch": "vitest --exclude 'src/__integration__/**'",
"test:integration": "vitest run --config vitest.integration.config.ts",
"lint": "oxlint src/",
"fmt": "oxlint --fix src/"
},
"devDependencies": {
"@types/node": "^22.0.0",
"oxlint": "^1.50.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=22.0.0"
}
}