Files
iyzico/package.json
Duhan BALCI 219fcc13af 1.0.1
2026-01-02 13:59:58 +03:00

52 lines
1.1 KiB
JSON

{
"name": "iyzico-sdk",
"version": "1.0.1",
"description": "Iyzico payment system TypeScript library",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"watch": "tsdown --watch",
"dev": "tsdown --watch",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"iyzico",
"payment",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^10.1.0",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"dotenv": "^17.2.3",
"tsdown": "^0.18.4",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=18.0.0"
}
}