-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 976 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 976 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
30
31
{
"name": "termshare",
"version": "2.0.0",
"author": "Jochen Wierum <[email protected]>",
"description": "",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"ncu": "npx npm-check-updates",
"ncu-install": "npm-check-updates -u",
"build": "npm run build --workspace=protocol && npm run build --workspace=client && npm run build --workspace=server",
"type-check": "npm run type-check --workspace=client && npm run type-check --workspace=server",
"lint": "npm run lint --workspace=client && npm run lint --workspace=server",
"lint-and-fix": "npm run lint-and-fix --workspace=client && npm run lint-and-fix --workspace=server"
},
"workspaces": [
"./protocol",
"./server",
"./client"
],
"devDependencies": {
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"npm-check-updates": "^19.3.1",
"eslint": "^9.39.2"
},
"dependencies": {
"@bufbuild/protobuf": "^2.11.0"
}
}