forked from isaced/appstore-connect-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "appstore-connect-sdk",
"version": "1.2.1",
"description": "An App Store Connect API client for Node.js",
"keywords": [
"appstore connect",
"api",
"sdk",
"apple"
],
"type": "module",
"main": "dist/cjs/main.js",
"module": "dist/main.js",
"types": "dist/types/main.d.ts",
"exports": {
".": {
"import": "./dist/main.js",
"require": "./dist/cjs/main.js",
"types": "./dist/types/main.d.ts"
},
"./openapi": {
"import": "./dist/openapi/index.js",
"require": "./dist/cjs/openapi/index.js",
"types": "./dist/types/openapi/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"build": "rm -rf ./dist && node build.js && npm run build:types && npm run copy:package.cjs.json",
"build:types": "npx tsc --emitDeclarationOnly --declaration",
"copy:package.cjs.json": "cp ./package.cjs.json ./dist/cjs/package.json && cp ./package.cjs.json ./dist/types/package.json"
},
"dependencies": {
"jose": "^4.15.9"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.5.2",
"@types/bun": "^1.1.12",
"esbuild": "0.24.0",
"typescript": "^5.0.0"
},
"author": "isaced",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/isaced/appstore-connect-sdk.git"
},
"bugs": {
"url": "https://github.com/isaced/appstore-connect-sdk/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/isaced/appstore-connect-sdk"
}