-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.8 KB
/
package.json
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
{
"name": "@sumup/sdk",
"version": "0.0.1-beta.5",
"description": "The official TypeScript SDK for the SumUp API",
"keywords": [
"nodejs",
"sdk",
"sumup",
"sumup-ts",
"sumup sdk"
],
"homepage": "https://github.com/sumup/sumup-ts",
"bugs": {
"url": "https://github.com/sumup/sumup-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumup/sumup-ts.git"
},
"license": "Apache-2.0",
"author": "SumUp <[email protected]> (https://sumup.com/)",
"type": "module",
"files": [
"dist",
"README.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE.md"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"scripts": {
"prebuild": "npm run fmt",
"build": "rslib build",
"build:watch": "rslib build --watch",
"inspect": "rslib inspect",
"test": "vitest",
"tsc": "tsc",
"prerelease": "npm run build",
"generate": "echo 'not yet implemented'",
"lint": "biome check",
"fmt": "biome check --write"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"imports": {
"@sumup/sdk": ".",
"@sumup/sdk/*": "./src/*"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./*": {
"types": [
"./dist/*.d.ts",
"./dist/*/index.d.ts"
],
"require": [
"./dist/*.cjs",
"./dist/*/index.cjs"
],
"default": [
"./dist/*.js",
"./dist/*/index.js"
]
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rslib/core": "^0.5.0",
"rsbuild-plugin-dts": "^0.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
}
}