-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 745 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "corridor",
"version": "1.0.0",
"description": "Real-time clipboard synchronization across devices",
"private": true,
"scripts": {
"dev": "cd server/web && npm run dev",
"build": "cd server/web && npm install && npm run build",
"start": "cd server/web && npm run start",
"build:worker": "cd server/worker && npm run build",
"deploy:worker": "cd server/worker && npm run deploy",
"dev:worker": "cd server/worker && npm run dev",
"build:windows": "cd windows && dotnet publish --configuration Release --self-contained true --runtime win-x64 --output ./publish --p:PublishSingleFile=true --p:DebugType=None --p:EnableCompressionInSingleFile=true"
},
"dependencies": {
"next": "^16.0.0"
}
}