-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.02 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
{
"name": "handle-non-labeled-issues",
"version": "1.0.1",
"description": "A GitHub Action to handle issues submitted without a label",
"type": "module",
"private": true,
"scripts": {
"build": "tsc",
"lint": "biome check --error-on-warnings ./src ./test && markdownlint -i node_modules -i CHANGELOG.md '**/*.md'",
"lint:fix": "biome check --write ./src ./test && markdownlint -i node_modules -i CHANGELOG.md -f '**/*.md'",
"package": "esbuild src/index.ts --bundle --format=esm --platform=node --target=node24 --banner:js=\"import { createRequire } from 'node:module'; const require = createRequire(import.meta.url);\" --outfile=dist/index.mjs && tsc --emitDeclarationOnly --declaration --outDir dist && npm run license",
"test": "npm run lint && vitest run",
"clean": "rm -rf dist node_modules",
"license": "generate-license-file --config ./.generatelicensefile.json"
},
"keywords": [
"aws",
"github",
"actions",
"issues",
"labels"
],
"engines": {
"node": ">=24.0.0"
},
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"license": "Apache-2.0",
"homepage": "https://github.com/aws-actions/handle-non-labeled-issues",
"repository": {
"type": "git",
"url": "https://github.com/aws-actions/handle-non-labeled-issues.git"
},
"bugs": {
"url": "https://github.com/aws-actions/handle-non-labeled-issues/issues"
},
"author": {
"name": "Amazon.com, Inc. or its affiliates",
"url": "https://aws.amazon.com",
"organization": true
},
"devDependencies": {
"@biomejs/biome": "2.5.14",
"@types/node": "26.6.2",
"@vitest/coverage-v8": "5.0.1",
"esbuild": "0.28.2",
"generate-license-file": "4.2.5",
"markdownlint-cli": "0.49.1",
"typescript": "7.0.2",
"vitest": "5.0.0"
},
"dependencies": {
"@actions/core": "3.0.1",
"@actions/github": "^9.1.1"
}
}