-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.26 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.26 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "appstore-connect-jwt-generator-cli",
"version": "1.1.1",
"author": "poad",
"license": "MIT",
"private": false,
"homepage": "https://github.com/poad/appstore-connect-jwt-generator-cli#readme",
"main": "bin/cli.js",
"bin": {
"jwt-gen": "./bin/cli.js",
"appstore-jwt-gen": "./bin/cli.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/poad/appstore-connect-jwt-generator-cli.git"
},
"keywords": [
"appstore",
"jwt",
"api",
"cli"
],
"preferGlobal": false,
"scripts": {
"test": "vitest run --silent=false --coverage --passWithNoTests",
"prebuild": "tsc --build --clean",
"watch": "tsc --watch",
"build": "tsc",
"dev": "tsx src/main.ts",
"package": "ncc build --license licenses.txt -m -q -o bin && chmod +x bin/cli.js",
"lint": "eslint",
"lint-fix": "eslint --fix",
"all": "pnpm build && pnpm package && pnpm lint && pnpm test"
},
"devDependencies": {
"@eslint/compat": "^1.3.2",
"@eslint/js": "^9.35.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/node": "^24.5.2",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"jiti": "^2.5.1",
"prettier": "^3.6.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"dependencies": {
"appstore-connect-jwt-generator-core": "^2.0.4",
"arg": "^5.0.2",
"chalk": "^5.6.2",
"chalk-template": "^1.1.2",
"log4js": "^6.9.1"
},
"files": [
"package.json",
"bin/*",
"README.md"
],
"exports": {
".": {
"node": "./bin/index.js",
"default": "./bin/index.js"
}
},
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"node": ">=22.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"packageManager": "pnpm@10.17.0"
}