-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.38 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
{
"name": "boardly",
"version": "1.0.0",
"description": "Config-driven GitHub Action that automates GitHub Projects (v2): sprint rollover, stale-card nudges, sub-issue Done-gating with parent roll-up, sprint digests, daily standups, and priority auto-sort.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/*.test.ts",
"all": "npm run typecheck && npm run test && npm run build"
},
"keywords": [
"github-actions",
"github-projects",
"projects-v2",
"automation",
"sprint",
"kanban"
],
"author": "cdrrazan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cdrrazan/Boardly.git"
},
"bugs": {
"url": "https://github.com/cdrrazan/Boardly/issues"
},
"homepage": "https://github.com/cdrrazan/Boardly#readme",
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@octokit/graphql": "^8.2.2",
"js-yaml": "^4.1.0",
"nodemailer": "^6.10.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.3",
"@types/nodemailer": "^6.4.24",
"@vercel/ncc": "^0.38.3",
"tsx": "^4.23.0",
"typescript": "^5.8.3"
}
}