generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "action-pr-description-add",
"version": "0.0.3",
"private": true,
"description": "TypeScript template action",
"main": "src/main.ts",
"scripts": {
"all": "npm run build && npm run format && npm run lint && npm run package",
"build": "tsc",
"dist": "npm ci && npm run build && npm run package && git diff --ignore-space-at-eol dist/",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license LICENSE"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"pull request"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"braces": "^3.0.3"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.47.0",
"eslint-plugin-github": "^4.9.2",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.4.5"
},
"overrides": {
"[email protected]": "3.0.3",
"undici@<5.28.2": "^5.28.3"
}
}