-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
35 lines (33 loc) · 938 Bytes
/
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
{
"name": "action-create-linear-issue",
"packageManager": "[email protected]",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"private": true,
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"package": "ncc build --license licenses.txt",
"all": "pnpm format && pnpm build && pnpm package",
"prepare": "husky",
"pre-commit": "pnpm all && git diff --quiet || (echo '🚨 Commit aborted: Changes detected after build. Please add the changes and try again.' && exit 1)"
},
"keywords": [],
"author": "ctriolo",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@linear/sdk": "^33.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}