-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "@jef/conventional-commits-pr-action",
"version": "1.3.0",
"description": "Lints pull requests based on Conventional Commits and Jira tickets",
"license": "MIT",
"repository": "jef/conventional-commits-pr-action",
"funding": "https://github.com/sponsors/jef",
"author": {
"name": "Jef LeCompte",
"url": "https://jef.buzz"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"dev": "tsx src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"build": "npm run typecheck && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/node": "^24.0.15",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rollup": "^4.45.1",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.37.0",
"vitest": "^3.2.4"
},
"volta": {
"node": "22.17.1"
}
}