-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 KB
/
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
{
"name": "@cafour/helveg-workspace",
"author": "Adam Štěpánek",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://gitlab.com/helveg/helveg"
},
"homepage": "https://helveg.net",
"private": true,
"pnpm": {
"overrides": {
"@cafour/helveg-diagram": "workspace:*",
"@cafour/helveg-explorer": "workspace:*"
}
},
"engines": {
"pnpm": ">=8.10.3"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo run rebuild",
"git-version": "turbo run git-version",
"csharp:none": "quicktype --lang cs --src-lang schema --framework SystemTextJson --array-type list --virtual --namespace Helveg.Visualization",
"csharp:data": "npm run csharp:none -- --out \"./src/Visualization/DataModel.cs\" \"./schema/data.json\"",
"csharp:icon-set": "npm run csharp:none -- --out \"./src/Visualization/IconSetModel.cs\" \"./schema/icon-set.json\"",
"csharp": "npm run csharp:data",
"schema": "turbo run schema"
},
"devDependencies": {
"quicktype": "^23.0.158",
"rimraf": "^5.0.5",
"turbo": "^1.13.3"
}
}