forked from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.36 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.36 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
{
"name": "typescript-action",
"version": "1.0.0",
"description": "TypeScript template action",
"main": "src/main.ts",
"scripts": {
"build": "esbuild ./src/main.ts --bundle --outdir=dist --platform=node --target=node20.0.0 --format=esm --packages=bundle --banner:js=\"import{createRequire}from'module';const require=createRequire(import.meta.url);\"",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"test": "vitest run --coverage",
"update-snapshots": "vitest run --update",
"all": "yarn && yarn run build && yarn run format && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redhat-plumbers-in-action/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "[email protected]",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/core": "^7.0.6",
"@octokit/plugin-throttling": "^11.0.3",
"@probot/octokit-plugin-config": "^4.1.0"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.3.1",
"@vitest/coverage-v8": "^4.0.18",
"esbuild": "^0.27.3",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}