-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.86 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@rotorsoft/act-root",
"description": "Act monorepo",
"version": "0.0.1",
"author": {
"name": "rotorsoft",
"email": "rotorsoft@outlook.com"
},
"license": "MIT",
"keywords": [
"typescript",
"event sourcing",
"cqrs",
"ddd",
"framework",
"agent",
"actor",
"library"
],
"engines": {
"node": ">=22.23.2",
"pnpm": ">=11.24.0"
},
"packageManager": "pnpm@11.24.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Rotorsoft/act-root.git"
},
"bugs": {
"url": "https://github.com/Rotorsoft/act-root/issues"
},
"homepage": "https://github.com/Rotorsoft/act-root#readme",
"scripts": {
"clean": "pnpm -r run clean",
"build": "pnpm -r build",
"typecheck": "tsc --noEmit --incremental --tsBuildInfoFile node_modules/.cache/act-typecheck.tsbuildinfo --project tsconfig.workspace.json --jsx react-jsx",
"test": "vitest run --coverage",
"bench:micro": "vitest bench --run --config vitest.bench.config.ts",
"bench:scenarios": "vitest run --config vitest.bench.config.ts",
"mutation": "pnpm --filter @rotorsoft/act --filter @rotorsoft/act-pg --filter @rotorsoft/act-sqlite --filter @rotorsoft/act-tck --workspace-concurrency=1 run mutation",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"format": "biome format . --write",
"check:browser-safe": "node scripts/check-browser-safe.mjs",
"check:readmes": "node scripts/check-lib-readmes.mjs",
"paths:sync": "node scripts/derive-tsconfig-paths.mjs --write",
"paths:check": "node scripts/derive-tsconfig-paths.mjs --check",
"check:rfc-gate": "node scripts/check-rfc-gate.mjs",
"prepare": "simple-git-hooks",
"dev:calculator": "pnpm -F calculator dev",
"dev:wolfdesk": "pnpm -F wolfdesk dev",
"dev:http": "concurrently -n 'server,client' -c 'cyan,yellow' 'CORS_ORIGIN=http://localhost:3000 pnpm -F server dev' 'pnpm -F client dev'",
"dev:metrics": "bash recipes/observability/prometheus/run.sh",
"dev:inspector": "pnpm -F @rotorsoft/act-inspector dev",
"dev:diagram": "pnpm -F @rotorsoft/act-diagram dev",
"act": "NODE_OPTIONS=--disable-warning=DEP0205 FORCE_COLOR=${FORCE_COLOR:-1} tsx libs/act-diagram/src/cli/index.ts",
"scrub": "chmod +x ./scripts/scrub.sh && ./scripts/scrub.sh"
},
"dependencies": {
"@rotorsoft/act": "workspace:^",
"@rotorsoft/act-pg": "workspace:^"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@fast-check/vitest": "^0.4.1",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^11.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@stryker-mutator/core": "^10.0.0",
"@stryker-mutator/vitest-runner": "^10.0.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/chance": "^1.1.8",
"@types/minimist": "^1.2.5",
"@types/node": "^25.9.5",
"@vitest/coverage-v8": "^4.1.11",
"chance": "^1.1.13",
"concurrently": "^10.0.5",
"fast-check": "^4.9.0",
"lint-staged": "^17.4.1",
"semantic-release": "^25.0.9",
"semantic-release-monorepo": "^8.0.2",
"simple-git-hooks": "^2.13.1",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.5.1",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"simple-git-hooks": {
"commit-msg": "npx --no -- commitlint --edit $1",
"pre-commit": "npx lint-staged",
"pre-push": "branch=$(git rev-parse --abbrev-ref HEAD); if [ \"$branch\" = \"master\" ]; then pnpm test; fi"
},
"lint-staged": {
"*.{ts,tsx,js,mjs,json}": [
"biome check --write --no-errors-on-unmatched"
]
}
}