-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "@tamtamchik/apple-iap-tools",
"version": "1.3.6",
"description": "Types and verifyReceipt function for Apple in-app purchases and server notifications.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"author": "Yuri Tkachenko <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/tamtamchik/apple-iap-tools#readme",
"bugs": {
"url": "https://github.com/tamtamchik/apple-iap-tools/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/tamtamchik/apple-iap-tools.git"
},
"directories": {
"doc": "docs"
},
"keywords": [
"Apple Server Notifications",
"Apple verifyReceipt",
"Apple IAP"
],
"devDependencies": {
"@types/node": "^20.12.8",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh",
"dev": "tsc --watch",
"docs": "typedoc",
"docs:serve": "npx http-server docs",
"prepare": "npm run build && npm run docs"
}
}