-
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.13 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.13 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": "@smartbase-js/raiaccept-api-client",
"version": "0.9.5",
"description": "TypeScript SDK for RaiAccept payment gateway API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"unit-tests": "vitest run tests/unit.test.js",
"integration-tests": "vitest run --config vitest.integration.config.js",
"prepublishOnly": "npm run build",
"publish:public": "npm publish --access public"
},
"keywords": [
"raiaccept",
"payment",
"gateway",
"api",
"sdk",
"typescript"
],
"author": "",
"license": "OSL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/SmartBase-SK/raiaccept-node/"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^22.2.0",
"@vitest/ui": "^1.3.1",
"dotenv": "^17.2.3",
"jsdom": "^24.0.0",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}