-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.86 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
{
"name": "typescript-action",
"version": "0.0.0-semantic-released",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "esbuild src/main.ts --bundle --platform=node --target=node24 --outfile=dist/index.js --sourcemap --legal-comments=linked",
"test": "vitest run",
"all": "yarn run build && yarn run format && yarn run lint && yarn run package && yarn test",
"prepare": "husky install",
"release": "yarn semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "3.0.1",
"@actions/exec": "3.0.0",
"@actions/github": "9.1.1",
"@actions/glob": "0.7.0",
"@octokit/types": "16.0.0",
"@octokit/webhooks": "14.2.0",
"@redocly/cli": "2.30.0",
"comment-json": "5.0.0",
"csv-reader": "1.0.12",
"ignore": "7.0.5"
},
"devDependencies": {
"@typeform/eslint-config": "7.0.7",
"@types/node": "25.6.0",
"esbuild": "^0.28.0",
"eslint": "10.2.1",
"husky": "9.1.7",
"js-yaml": "4.1.1",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"semantic-release": "25.0.3",
"typescript": "6.0.3",
"vitest": "^4.1.5"
},
"prettier": "@typeform/eslint-config/prettier",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
},
"engines": {
"node": "24"
}
}