-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 877 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 877 Bytes
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
{
"name": "@remato/trello-integration-action",
"version": "10.1.0",
"license": "MIT",
"description": "GitHub Action to integrate Github pull requests with Trello cards",
"main": "dist/index.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js",
"test": "vitest run",
"prettier": "prettier --list-different \"**/*.ts\"",
"lint": "oxlint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.1.0",
"axios": "^1.15.0"
},
"devDependencies": {
"@remato/prettier-config": "^1.1.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"esbuild": "^0.28.0",
"oxlint": "^1.60.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
},
"prettier": "@remato/prettier-config"
}