-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "assign-issue-action",
"version": "2.1.1",
"description": "A GitHub Action to streamline issue assignments with commands for contributors and maintainers.",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "dist/index.js",
"type": "module",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint . --ext .ts",
"build": "ncc build --license licenses.txt",
"tsup": "tsup src/index.ts --format esm",
"bundle": "npm run tsup && npm run build",
"all": "npm run format && npm run lint && npm run bundle",
"prepare": "husky"
},
"homepage": "https://github.com/takanome-dev/assign-issue-action#readme",
"bugs": "https://github.com/takanome-dev/assign-issue-action/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/takanome-dev/assign-issue-action.git"
},
"keywords": [
"github",
"actions",
"assign",
"slash-assign",
"assign-to-me",
"slash-commands",
"github-actions"
],
"author": "takanome-dev <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/core": "^6.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"date-fns": "^4.1.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.26.0",
"@types/js-yaml": "4.0.9",
"@types/mustache": "4.2.5",
"@types/node": "18.19.79",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "8.26.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.21.0",
"eslint-plugin-github": "5.1.8",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "9.1.7",
"js-yaml": "4.1.0",
"lint-staged": "15.4.3",
"prettier": "3.5.3",
"tsup": "^8.4.0",
"typescript": "5.8.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.ts": "prettier --write"
}
}