-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 812 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "votum",
"version": "0.1.0",
"private": true,
"description": "A bot-resistant endorsement system for GitHub repositories.",
"license": "MIT",
"workspaces": [
"backend",
"extension",
"web"
],
"scripts": {
"dev": "npm run dev --workspace=@votum/backend",
"build": "npm run build --workspaces --if-present",
"db:migrate": "npm run db:migrate --workspace=@votum/backend",
"db:seed": "npm run db:seed --workspace=@votum/backend",
"extension:pack": "powershell -NoProfile -Command \"if (Test-Path dist\\extension\\votum-extension.zip) { Remove-Item dist\\extension\\votum-extension.zip -Force }; Compress-Archive -Path extension\\* -DestinationPath dist\\extension\\votum-extension.zip -CompressionLevel Optimal\""
},
"engines": {
"node": ">=20"
}
}