-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "candango-increment-version",
"version": "0.0.1",
"main": "index.ts",
"scripts": {
"esbuild": "node build.mjs",
"build": "npm run build:clean && npm run esbuild",
"build:clean": "rm -rf dist",
"yarn": "npm run yarn:clean && npm run yarn:v2 && npm run yarn:install",
"yarn:install": "yarn install",
"yarn:clean": "rm -rf yarn.lock .yarn .yarnrc.yml .next node_modules",
"yarn:v2": "yarn set version berry && yarn config set nodeLinker node-modules"
},
"keywords": [
"github",
"actions",
"version",
"ci"
],
"author": "Flavio Garcia",
"license": "MIT",
"description": "Github Action that controls version increment",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@octokit/auth-app": "7.2.1",
"@octokit/rest": "21.1.1"
},
"devDependencies": {
"@octokit/types": "14.0.0",
"@types/node": "22.14.0",
"esbuild": "0.25.3",
"typescript": "5.8.3"
},
"packageManager": "yarn@4.9.1"
}