-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 943 Bytes
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
{
"name": "sshid",
"version": "1.0.0",
"private": true,
"description": "Open-source passkey-backed SSH public key resolver. Fetch all your public keys with a single handle.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/server",
"apps/web"
],
"scripts": {
"dev": "concurrently -n server,web -c blue,magenta \"npm:dev:server\" \"npm:dev:web\"",
"dev:server": "npm run dev --workspace @sshid/server",
"dev:web": "npm run dev --workspace @sshid/web",
"build": "npm run build:web && npm run build:server",
"build:web": "npm run build --workspace @sshid/web",
"build:server": "npm run build --workspace @sshid/server",
"start": "node apps/server/dist/index.js",
"typecheck": "npm run typecheck --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present"
},
"devDependencies": {
"concurrently": "^9.1.2"
}
}