-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 899 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 899 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
34
35
36
{
"name": "push-alert",
"version": "2.0.0",
"private": true,
"description": "Push alert for monitoring unreviewed commits",
"main": "dist/index.js",
"scripts": {
"package": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinyspeck/push-alert.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Shiqi Yang",
"license": "MIT",
"dependencies": {
"@actions/core": "^2.0.1",
"@actions/github": "^6.0.1",
"@octokit/rest": "^22.0.1",
"@tsconfig/node24": "^24.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"@types/node": "^24.0.0",
"rollup": "^4.53.5",
"tslib": "^2.8.1",
"typescript": "5.9.3"
}
}