|
1 | 1 | { |
2 | 2 | "name": "commit-comment", |
3 | | - "version": "0.1.0", |
4 | | - "types": "./dist/types/index.d.ts", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A GitHub Action to commit comment", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "https://github.com/dext7r/commit-comment" |
| 8 | + }, |
| 9 | + "homepage": "https://github.com/dext7r/commit-comment", |
| 10 | + "bugs": { |
| 11 | + "url": "https://github.com/dext7r/commit-comment/issues" |
| 12 | + }, |
| 13 | + "keywords": [ |
| 14 | + "github", |
| 15 | + "action", |
| 16 | + "commit", |
| 17 | + "comment" |
| 18 | + ], |
| 19 | + "license": "MIT", |
| 20 | + "author": { |
| 21 | + "name": "h7ml", |
| 22 | + "email": "i@h7ml.cn", |
| 23 | + "url": "https://github.com/h7ml" |
| 24 | + }, |
| 25 | + "sideEffects": [], |
5 | 26 | "main": "./dist/lib/index.js", |
6 | 27 | "module": "./dist/es/index.js", |
| 28 | + "types": "./dist/types/index.d.ts", |
7 | 29 | "scripts": { |
8 | | - "prepare": "modern build && husky install", |
9 | | - "dev": "modern dev", |
10 | 30 | "build": "modern build", |
11 | 31 | "build:watch": "modern build -w", |
12 | | - "reset": "rimraf ./**/node_modules", |
13 | | - "lint": "modern lint", |
14 | | - "change": "modern change", |
15 | 32 | "bump": "modern bump", |
16 | | - "pre": "modern pre", |
| 33 | + "change": "modern change", |
17 | 34 | "change-status": "modern change-status", |
| 35 | + "dev": "modern dev", |
18 | 36 | "gen-release-note": "modern gen-release-note", |
19 | | - "release": "modern release", |
| 37 | + "lint": "modern lint", |
20 | 38 | "new": "modern new", |
| 39 | + "pre": "modern pre", |
| 40 | + "prepare": "modern build && husky install", |
| 41 | + "release": "modern release", |
| 42 | + "reset": "rimraf ./**/node_modules", |
21 | 43 | "upgrade": "modern upgrade" |
22 | 44 | }, |
23 | 45 | "lint-staged": { |
|
29 | 51 | "node_modules/", |
30 | 52 | "dist/" |
31 | 53 | ], |
32 | | - "dependencies": {}, |
33 | | - "peerDependencies": {}, |
| 54 | + "dependencies": { |
| 55 | + "@actions/core": "^1.10.1", |
| 56 | + "@actions/github": "^6.0.0", |
| 57 | + "@octokit/rest": "^20.1.0", |
| 58 | + "actions-util": "^1.1.4" |
| 59 | + }, |
34 | 60 | "devDependencies": { |
35 | | - "@modern-js/module-tools": "2.49.2", |
36 | 61 | "@modern-js/eslint-config": "2.49.2", |
37 | | - "typescript": "~5.0.4", |
| 62 | + "@modern-js/module-tools": "2.49.2", |
38 | 63 | "@types/node": "~16.11.7", |
39 | | - "rimraf": "~3.0.2", |
| 64 | + "chalk": "^5.3.0", |
| 65 | + "husky": "~8.0.1", |
40 | 66 | "lint-staged": "~13.1.0", |
41 | 67 | "prettier": "~2.8.1", |
42 | | - "husky": "~8.0.1" |
| 68 | + "rimraf": "~3.0.2", |
| 69 | + "simple-git": "^3.24.0", |
| 70 | + "typescript": "~5.0.4" |
43 | 71 | }, |
44 | | - "sideEffects": [], |
45 | 72 | "publishConfig": { |
46 | 73 | "access": "public", |
47 | 74 | "registry": "https://registry.npmjs.org/" |
|
0 commit comments