-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1022 Bytes
/
package.json
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
{
"name": "dotnet-project-version-updater",
"version": "1.7.0",
"description": "A GitHub action to update or bump project versions. Supports .csproj, .props, .nuspec, and many other .NET file types.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"test": "ava lib/test.js",
"package": "ncc build --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vers-one/dotnet-project-version-updater.git"
},
"keywords": [
"actions",
"dotnet",
"version"
],
"author": "vers-one",
"license": "MIT",
"bugs": {
"url": "https://github.com/vers-one/dotnet-project-version-updater/issues"
},
"homepage": "https://github.com/vers-one/dotnet-project-version-updater",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@vercel/ncc": "^0.38.2",
"ava": "^6.2.0",
"typescript": "^5.6.3"
}
}