generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "return-dispatch",
"version": "3.0.1",
"private": true,
"description": "Dispatch an action and output the run ID.",
"main": "lib/main.js",
"type": "module",
"scripts": {
"build": "pnpm run build:types && pnpm run build:bundle",
"build:bundle": "node ./esbuild.config.mjs",
"build:types": "tsc",
"format:check": "prettier --check **/*.ts",
"format": "pnpm run format:check --write",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"release": "release-it",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Codex-/return-dispatch.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Alex Miller",
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "6.0.1"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@octokit/types": "16.0.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/node": "24.11.0",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/coverage-v8": "4.0.18",
"chalk": "5.6.2",
"changelogithub": "14.0.0",
"esbuild": "0.27.3",
"eslint": "10.0.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.1",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.56.1",
"vitest": "4.0.18"
}
}