-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
57
58
59
60
{
"name": "backlog-notify",
"private": true,
"description": "Notify commit messages to Backlog issue",
"main": "dist/index.js",
"scripts": {
"build": "pnpm run lint --fix && pnpm run format && pnpm run compile",
"compile": "ncc build ./src/main.ts -m -s --target es2022 --license index.js.LICENSE.txt",
"lint": "eslint",
"format": "prettier --write .",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bicstone/backlog-notify.git"
},
"keywords": [
"GitHub Actions",
"actions",
"Nulab",
"Backlog",
"Nulab Backlog",
"Notify",
"Project management"
],
"author": "Oishi Takanori",
"license": "MIT",
"dependencies": {
"lodash.template": "4.5.0",
"result-type-ts": "2.2.0"
},
"devDependencies": {
"@actions/core": "3.0.0",
"@octokit/webhooks-examples": "7.6.1",
"@octokit/webhooks-types": "7.6.1",
"@types/lodash.template": "4.5.3",
"@types/node": "24.12.2",
"@vercel/ncc": "0.38.4",
"@vitest/eslint-plugin": "1.6.16",
"all-contributors-cli": "6.26.1",
"eslint": "10.2.1",
"eslint-config-love": "153.0.0",
"eslint-plugin-regexp": "3.1.0",
"husky": "9.1.7",
"prettier": "3.8.3",
"typescript": "5.9.3",
"vitest": "4.1.4"
},
"volta": {
"node": "24.15.0",
"pnpm": "10.33.0"
},
"engines": {
"node": "24.15.0",
"pnpm": "10.33.0"
},
"packageManager": "pnpm@10.33.0"
}