-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "universal-version-bump",
"displayName": "Universal Version Bump",
"version": "0.14.2",
"description": "A GitHub Action to automatically bump versions across any app (Node, Python, PHP, Docker, etc.)",
"main": "dist/index.js",
"scripts": {
"build": "pnpm exec ts-node scripts/build.ts",
"test": "vitest --config vitest.config.mts ",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "pnpm lint --fix && pnpm format && pnpm build "
},
"keywords": [
"actions",
"changelog",
"commits"
],
"homepage": "https://github.com/taj54/universal-version-bump#readme",
"bugs": {
"url": "https://github.com/taj54/universal-version-bump/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taj54/universal-version-bump.git"
},
"license": "MIT",
"author": {
"name": "Taj",
"email": "[email protected]"
},
"packageManager": "[email protected]",
"dependencies": {
"@actions/core": "^2.0.0",
"@actions/exec": "^2.0.0",
"@actions/github": "^7.0.0",
"semver": "^7.7.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^10.0.0",
"@types/node": "^24.3.0",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "3.2.4",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.0",
"typescript-eslint": "^8.44.1",
"vitest": "^3.2.4",
"yaml": "^2.8.1"
}
}