-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.05 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.05 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
{
"name": "appstore-connect-jwt-generator-cli",
"version": "1.1.2",
"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": "^2.1.0",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/node": "^25.9.1",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.4.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-promise": "^7.3.0",
"jiti": "^2.7.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.0",
"vite": "^8.0.14",
"vitest": "^4.1.7"
},
"dependencies": {
"appstore-connect-jwt-generator-core": "^2.0.6",
"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@11.4.0"
}