-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.52 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.52 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
{
"name": "ghost-draw",
"version": "2.0.0.0",
"description": "Draw directly on your screen with a transparent overlay",
"repository": {
"type": "git",
"url": "https://github.com/RuntimeRascal/ghost-draw.git"
},
"author": "RuntimeRascal",
"license": "MIT",
"private": true,
"scripts": {
"build": "dotnet build GhostDraw.sln",
"build:release": "dotnet build GhostDraw.sln -c Release",
"test": "dotnet test GhostDraw.sln --verbosity normal",
"test:watch": "dotnet watch test Tests/GhostDraw.Tests/GhostDraw.Tests.csproj",
"clean": "dotnet clean GhostDraw.sln && npm run clean:installer",
"clean:installer": "powershell -Command \"if (Test-Path Installer/bin) { Remove-Item -Recurse -Force Installer/bin }; if (Test-Path Installer/obj) { Remove-Item -Recurse -Force Installer/obj }\"",
"restore": "dotnet restore GhostDraw.sln",
"publish": "dotnet publish Src/GhostDraw/GhostDraw.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=false",
"publish:ver": "dotnet publish Src/GhostDraw/GhostDraw.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=false -p:Version=%VER%",
"dev": "dotnet build Src/GhostDraw/GhostDraw.csproj && dotnet run --project Src/GhostDraw/GhostDraw.csproj",
"dev:watch": "dotnet watch run --project Src/GhostDraw/GhostDraw.csproj",
"format": "dotnet format GhostDraw.sln",
"format:check": "dotnet format GhostDraw.sln --verify-no-changes",
"version:check": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File Scripts/Update-Version.ps1 -CreateTag -PushTag -UpdateProjFiles -Bump revision -DryRun",
"version:bump": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File Scripts/Update-Version.ps1 -CreateTag -PushTag -UpdateProjFiles -Bump revision",
"install:package": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File Package/Build-And-Install-MSIX.ps1",
"install:package:v": "powershell.exe -NoProfile -ExecutionPolicy Bypass -File Package/Build-And-Install-MSIX.ps1 -Version 2.0.0.0",
"package:store": "powershell.exe -NoProfile -ExecutionPolicy Bypass -Command \"Set-Location Package; ./build-msix.ps1 -Configuration Release -CreateUploadPackage -Version $env:npm_package_version\""
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"keywords": [
"drawing",
"overlay",
"screen-draw",
"windows",
"wpf",
"dotnet"
]
}