-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.04 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@grunnverk/github-tools",
"version": "1.5.11-dev.0",
"description": "GitHub API utilities for automation - PR management, issue tracking, workflow monitoring",
"main": "dist/index.js",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"guide"
],
"repository": {
"type": "git",
"url": "git+https://github.com/grunnverk/github-tools.git"
},
"scripts": {
"build": "npm run lint && tsc --noEmit && vite build",
"dev": "vite",
"watch": "vite build --watch",
"test": "rm -rf coverage && vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -rf dist coverage",
"precommit": "npm run lint && npm run build && npm run test",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run test"
},
"keywords": [
"github",
"github-api",
"automation",
"pull-requests",
"issues",
"workflows",
"octokit",
"github-actions"
],
"author": "Tim O'Brien <tobrien@discursive.com>",
"license": "Apache-2.0",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@grunnverk/git-tools": "^1.5.23",
"@octokit/rest": "^22.0.0"
},
"peerDependencies": {
"winston": "^3.17.0"
},
"peerDependenciesMeta": {
"winston": {
"optional": true
}
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.33.0",
"@swc/core": "^1.13.3",
"@types/node": "^24.2.1",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^4.0.13",
"ajv": "^8.18.0",
"esbuild": "0.27.2",
"eslint": "^9.33.0",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.3.0",
"mockdate": "^3.0.5",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-node": "^7.0.0",
"vitest": "^4.0.13",
"winston": "^3.17.0"
}
}