-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.01 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
{
"name": "@biggora/makecommerce",
"version": "1.0.4",
"description": "TypeScript SDK and NestJS adapter for MakeCommerce API.",
"keywords": [
"makecommerce",
"maksekeskus",
"payments",
"checkout",
"webhooks",
"refunds",
"payment-gateway",
"payment-api",
"sdk",
"api-client",
"typescript",
"nodejs",
"nestjs",
"ecommerce"
],
"homepage": "https://github.com/biggora/makecommerce#readme",
"bugs": {
"url": "https://github.com/biggora/makecommerce/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biggora/makecommerce.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"nestjs": [
"dist/nest/index.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./nestjs": {
"types": "./dist/nest/index.d.ts",
"import": "./dist/nest/index.js",
"require": "./dist/nest/index.cjs"
}
},
"files": [
"dist",
"nestjs.d.ts",
"README.md"
],
"engines": {
"node": ">=20"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@nestjs/common": "^11.0.0",
"@nestjs/core": "^11.0.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/common": "^11.0.11",
"@nestjs/core": "^11.0.11",
"@nestjs/testing": "^11.0.11",
"@types/node": "^24.2.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
},
"overrides": {
"esbuild": "0.28.1"
}
}