-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 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
{
"name": "yookassa-sdk-node",
"version": "0.0.8",
"description": "YooKassa TypeScript SDK",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.js"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsup src/index.ts --dts --format esm,cjs --clean --sourcemap",
"prettier": "prettier . --write",
"generate-openapi": "npx openapi-typescript ./src/openapi.yaml -o ./src/openapi.d.ts && npm run prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedorov-xyz/yookassa-sdk.git"
},
"keywords": [
"yookassa",
"yoomoney",
"yoocheckout",
"sdk",
"typescript",
"fetch",
"nodejs"
],
"author": "Igor Fedorov",
"license": "MIT",
"bugs": {
"url": "https://github.com/fedorov-xyz/yookassa-sdk/issues"
},
"homepage": "https://github.com/fedorov-xyz/yookassa-sdk#readme",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"openapi-fetch": "^0.12.2"
}
}