-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
{
"name": "markus",
"private": true,
"type": "module",
"description": "AI Native Digital Employee Platform",
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm build && concurrently -n api,ui -c blue,green \"node packages/cli/dist/index.js start\" \"node scripts/wait-for-api.mjs && pnpm --filter @markus/web-ui dev\"",
"dev:api": "node packages/cli/dist/index.js start",
"dev:ui": "pnpm --filter @markus/web-ui dev",
"dev:watch": "pnpm build && concurrently -n tsc,api,ui -c gray,blue,green \"pnpm -r --parallel --filter=!@markus/web-ui dev\" \"node packages/cli/dist/index.js start\" \"node scripts/wait-for-api.mjs && pnpm --filter @markus/web-ui dev\"",
"lint": "eslint packages/*/src/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -b && tsc --noEmit -p packages/web-ui",
"quality": "npm run typecheck && npm run test",
"clean": "pnpm -r clean",
"test:gui": "tsx test-gui-integration.ts",
"example:gui": "tsx examples/gui-automation-workflow.ts",
"markus": "node packages/cli/dist/index.js",
"build:publish": "pnpm build && pnpm --filter @markus/web-ui build && pnpm --filter @markus-global/cli build:bundle",
"dev:desktop": "pnpm build && concurrently -n backend,vite,electron -c blue,green,magenta \"node packages/cli/dist/index.js start\" \"node scripts/wait-for-api.mjs && pnpm --filter @markus/web-ui dev\" \"wait-on http://localhost:8056/api/health && cd packages/desktop && ELECTRON_DEV=1 electron .\"",
"build:desktop": "pnpm build && pnpm --filter @markus/web-ui build && pnpm --filter @markus/desktop build:electron"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@types/node": "^25.3.0",
"typescript": "^5.9.3",
"undici": "^8.4.0"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "4.0.18",
"concurrently": "^9.2.1",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"vitest": "^4.0.18",
"wait-on": "^9.0.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"electron",
"node-datachannel"
]
},
"version": "0.8.5"
}