-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.07 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.07 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
{
"name": "assign-issue-action",
"version": "3.0.1",
"description": "A GitHub Action to streamline issue assignments with commands for contributors and maintainers.",
"engines": {
"node": "24.x",
"bun": "1.x"
},
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"format": "bunx biome format --write",
"lint": "bunx biome lint --write",
"build": "ncc build --license licenses.txt",
"tsdown": "tsdown index.ts --format esm",
"bundle": "bun run test && bun run tsdown && bun run build",
"all": "bun run format && bun run lint && bun run bundle",
"test": "tsc --noEmit",
"tsc:build": "tsc --noEmit",
"test:unit": "bun test",
"test:coverage": "bun test --coverage",
"ci": "bun run lint && bun run test",
"test:search": "bun scripts/test-action.js search",
"test:unassign": "bun scripts/test-action.js unassign",
"test:help": "bun scripts/test-action.js help",
"debug:stats": "bun scripts/debug-stats.ts",
"debug:stats:curl": "./scripts/debug-stats-curl.sh"
},
"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 <takanomedev221@gmail.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/core": "^7.0.0",
"@octokit/plugin-throttling": "^11.0.0",
"date-fns": "^4.1.0",
"mustache": "^4.2.0"
},
"devDependencies": {
"@babel/preset-env": "7.29.0",
"@babel/preset-typescript": "7.28.5",
"@biomejs/biome": "2.3.15",
"@types/bun": "^1.3.8",
"@types/js-yaml": "4.0.9",
"@types/mustache": "4.2.6",
"@types/node": "25.2.3",
"@vercel/ncc": "0.38.4",
"js-yaml": "4.1.1",
"tsdown": "^0.20.0",
"typescript": "5.9.3"
}
}