-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
61 lines (61 loc) · 1.36 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": "app-store-server-api",
"version": "0.16.0",
"description": "A client for the App Store Server API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"package": "npm run build && npm pack"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"app",
"store",
"server",
"api",
"apple",
"in-app",
"purchase",
"iap",
"subscription",
"receipt",
"validation",
"notifications"
],
"license": "MIT",
"homepage": "https://github.com/agisboye/app-store-server-api",
"repository": {
"type": "git",
"url": "[email protected]:agisboye/app-store-server-api.git"
},
"bugs": {
"url": "https://github.com/agisboye/app-store-server-api/issues"
},
"dependencies": {
"jose": "^5.9.6"
},
"devDependencies": {
"@types/node": "^22.8.6",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"prettier": {
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 120
}
}