-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.15 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
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
89
90
{
"name": "@adguard/github-actions-runner",
"version": "1.1.2",
"description": "A GitHub Action runner tool to automate repository mirroring, streamline command execution, and manage artifacts with enhanced logging.",
"scripts": {
"prepack": "pnpm build && pnpm build:txt",
"watch": "rollup -c rollup.config.ts --configPlugin typescript --watch",
"build": "rimraf dist && rollup -c rollup.config.ts --configPlugin typescript && pnpm build:types",
"test": "jest",
"lint": "eslint --cache . && tsc -p tsconfig.eslint.json --noEmit",
"build:types": "tsc --project tsconfig.json --declaration --emitDeclarationOnly --outdir dist/types --rootDir src",
"build:txt": "ts-node scripts/build-txt",
"increment": "pnpm version patch --no-git-tag-version",
"test:smoke": "(cd __tests__/smoke/esm && pnpm test) && (cd __tests__/smoke/cjs && pnpm test) && (cd __tests__/smoke/typescript && pnpm test)"
},
"bin": {
"github-actions-runner": "dist/bin/index.js"
},
"main": "./dist/index.js",
"module": "./dist/es/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/es/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"keywords": [
"adguard",
"github-actions",
"ci",
"cd",
"automation",
"deployment"
],
"author": "Adguard Software Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AdguardTeam/GithubActionsRunner.git"
},
"homepage": "https://github.com/AdguardTeam/GithubActionsRunner/#readme",
"engines": {
"node": ">=18.19.1"
},
"dependencies": {
"axios": "^1.6.8",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"fs-extra": "^11.2.0",
"libsodium-wrappers": "^0.7.13",
"nanoid": "^5.0.7",
"octokit": "^3.2.0",
"unzipper": "^0.11.3",
"winston": "^3.13.0"
},
"devDependencies": {
"@octokit/core": "^6.1.2",
"@octokit/plugin-rest-endpoint-methods": "^12.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@swc/core": "^1.4.17",
"@swc/jest": "^0.2.36",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/libsodium-wrappers": "^0.7.14",
"@types/node": "^20.12.7",
"@types/unzipper": "^0.10.9",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.3",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup": "^4.14.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
}
}