-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.32 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
{
"name": "report-deploy-to-linear",
"version": "0.0.0",
"description": "GitHub Action to report back in Linear issue when associated pull request gets deployed successfully",
"keywords": [
"github",
"github-actions",
"actions"
],
"license": "MIT",
"author": "Dany Castillo",
"homepage": "https://github.com/dcastil/report-deploy-to-linear",
"repository": {
"type": "git",
"url": "git+https://github.com/dcastil/report-deploy-to-linear.git"
},
"bugs": {
"url": "https://github.com/dcastil/report-deploy-to-linear/issues"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "vitest",
"typecheck": "tsc --noEmit",
"build": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --target=node20 --sourcemap",
"prepare": "husky"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@effect/platform-node": "^0.57.2",
"@linear/sdk": "^28.0.0",
"@octokit/plugin-rest-endpoint-methods": "^13.2.4",
"@types/node": "^22.5.1",
"effect": "^3.6.5",
"esbuild": "^0.23.1",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}