@tamtamchik/app-store-receipt-parser
Version:
A lightweight TypeScript library for extracting transaction IDs from Apple's ASN.1 encoded receipts.
60 lines (59 loc) • 1.65 kB
JSON
{
"name": "@tamtamchik/app-store-receipt-parser",
"version": "2.2.2",
"description": "A lightweight TypeScript library for extracting transaction IDs from Apple's ASN.1 encoded receipts.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./src/index.ts",
"author": "Yuri Tkachenko <yuri.tam.tkachenko@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/tamtamchik/app-store-receipt-parser#readme",
"bugs": {
"url": "https://github.com/tamtamchik/app-store-receipt-parser/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tamtamchik/app-store-receipt-parser.git"
},
"keywords": [
"apple",
"receipt",
"parser",
"ASN.1",
"transaction",
"typescript"
],
"exports": {
".": {
"types": "./src/index.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"dependencies": {
"asn1js": "^3.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@stylistic/eslint-plugin-ts": "^4.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"tsup": "^8.0.2",
"typescript": "^5.8.3"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --clean",
"dev": "npm run build -- --watch src",
"lint": "eslint src --fix",
"test": "jest",
"coverage": "jest --coverage",
"prepublishOnly": "npm run build"
}
}