-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.82 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.82 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
{
"name": "markus",
"version": "0.7.0",
"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"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@types/node": "^25.3.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"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",
"node-datachannel"
]
}
}