-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "remoteflow",
"version": "1.0.0",
"description": "Open Source Remote Desktop Platform",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev --workspace=packages/server",
"dev:client": "npm run dev --workspace=packages/web-client",
"dev:desktop": "npm run dev --workspace=packages/desktop-client",
"dev:agent": "npm run dev --workspace=packages/agent",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint packages/*/src --ext .ts,.tsx",
"typecheck": "npm run typecheck --workspaces"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"remote-desktop",
"screenshare",
"remote-control",
"webrtc",
"cross-platform"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/your-org/remoteflow.git"
}
}