-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.07 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
{
"name": "python-version-patch-pr",
"version": "0.1.0",
"description": "This repository hosts a GitHub Action that watches for new CPython patch releases and prepares pull requests to upgrade repositories that pin exact Python patch versions. The action is currently under active development.",
"private": true,
"main": "dist/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"bundle": "ncc build src/index.ts -o dist",
"clean": "rimraf dist",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest watch",
"workflow:lint": "node node_modules/actionlint/node.cjs .github/workflows/**/*.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CasperKristiansson/python-version-patch-pr.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"type": "commonjs",
"bugs": {
"url": "https://github.com/CasperKristiansson/python-version-patch-pr/issues"
},
"homepage": "https://github.com/CasperKristiansson/python-version-patch-pr#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@octokit/plugin-throttling": "^11.0.2",
"@octokit/rest": "^22.0.0",
"cheerio": "^1.1.2",
"fast-glob": "^3.3.3",
"semver": "^7.7.3",
"undici": "^7.16.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/cheerio": "^1.0.0",
"@types/node": "^20.12.7",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.1",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^3.2.4",
"actionlint": "^2.0.6",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"tsx": "^4.20.6",
"typescript": "^5.4.5",
"vitest": "^3.2.4",
"yaml": "^2.8.1"
}
}