line-pay-core-v4
Version:
Core library for LINE Pay API V4 SDK - Provides shared utilities, base client, TypeScript types, and error handling for building LINE Pay integrations
90 lines • 2.26 kB
JSON
{
"name": "line-pay-core-v4",
"version": "1.5.4",
"description": "Core library for LINE Pay API V4 SDK - Provides shared utilities, base client, TypeScript types, and error handling for building LINE Pay integrations",
"module": "./dist/index.js",
"main": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"packageManager": "bun@1.3.4",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run clean && tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"dev": "bun run src/index.ts",
"test": "bun test",
"test:coverage": "bun test --coverage",
"lint": "biome lint ./src ./tests",
"lint:fix": "biome lint --write ./src ./tests",
"format": "biome format --write ./src ./tests",
"format:check": "biome format ./src ./tests",
"check": "biome check ./src ./tests",
"check:fix": "biome check --write ./src ./tests",
"prepare": "simple-git-hooks",
"prepublishOnly": "bun run build"
},
"keywords": [
"line-pay",
"line",
"payment",
"sdk",
"core",
"v4"
],
"author": {
"name": "Carl Lee",
"url": "https://github.com/CarlLee1983"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CarlLee1983/line-pay-core-v4.git"
},
"bugs": {
"url": "https://github.com/CarlLee1983/line-pay-core-v4/issues"
},
"homepage": "https://github.com/CarlLee1983/line-pay-core-v4#readme",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@types/bun": "latest",
"lint-staged": "^16.2.7",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"biome check --write",
"bun run typecheck"
],
"*.test.{ts,tsx}": [
"bun test --bail"
]
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}