-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.31 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
{
"name": "zidsa-action",
"type": "module",
"version": "0.1.4",
"private": true,
"packageManager": "pnpm@9.12.3",
"description": "Community built Github Action for zidsa",
"author": "Younis Ahmed <07430e0e-29c0-4a43-bcd0-c123714a124a@anonaddy.com>",
"license": "MIT",
"homepage": " https://github.com/younis-ahmed/zidsa-action.git",
"repository": {
"type": "git",
"url": "git+https://github.com/younis-ahmed/zidsa-action.git"
},
"bugs": {
"url": "https://github.com/younis-ahmed/zidsa-action.git/issues"
},
"keywords": [
"zidsa",
"github-action"
],
"exports": {
".": "./dist/index.js"
},
"main": "index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "pnpm run format:write && pnpm run package",
"ci-test": "npx vitest run",
"coverage": "npx make-coverage-badge --output-path ./badges/coverage.svg",
"format:write": "npx eslint --config eslint.config.js '**/*.{js,ts}'",
"format:check": "npx eslint .",
"lint": "npx eslint .",
"local-action": "npx @github/local-action . src/main.ts .env",
"package": "npx rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
"package:watch": "pnpm run package -- --watch",
"test": "npx vitest run",
"all": "pnpm run format:write && pnpm run lint && pnpm run test && pnpm run package"
},
"dependencies": {
"@actions/core": "^1.11.1",
"archiver": "^7.0.1",
"conventional-changelog-angular": "^8.0.0",
"conventional-recommended-bump": "^11.0.0",
"form-data": "^4.0.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*"
},
"devDependencies": {
"@antfu/eslint-config": "^4.11.0",
"@github/local-action": "^3.1.1",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@types/archiver": "^6.0.3",
"@types/node": "^22.13.13",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"@vitest/coverage-istanbul": "^3.0.9",
"@vitest/coverage-v8": "3.0.9",
"@vitest/ui": "3.0.9",
"eslint": "^9.23.0",
"eslint-plugin-format": "^1.0.1",
"make-coverage-badge": "^1.2.0",
"rollup": "^4.37.0",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
}
}