forked from WrongStack/WrongStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 3.03 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
{
"name": "wrongstack-monorepo",
"private": true,
"version": "0.287.0",
"license": "MIT",
"type": "module",
"packageManager": "pnpm@11.5.3+sha512.7ac1c919341c213a34dc0d02afb7143c5c26ac26ee8c4782deea821b8ac64d2134a081fd8941dae6e29bbb48f58dfc2b7fbceeccc07cb2f09d219d342a4969ed",
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"build": "node scripts/build.mjs",
"desktop": "pnpm --filter @wrongstack/desktop dev",
"desktop:start": "pnpm --filter @wrongstack/desktop start",
"test": "vitest run && pnpm --filter webui test",
"test:watch": "vitest",
"bench": "vitest bench --run --config vitest.bench.config.ts",
"bench:perf": "node scripts/bench.mjs",
"test:coverage": "cross-env NODE_OPTIONS=--max-old-space-size=4096 vitest run --coverage",
"test:e2e": "playwright test",
"lint": "biome lint .",
"lint:distributive": "node scripts/lint-distributive-types.mjs",
"lint:console": "node scripts/lint-console-logging.mjs --all",
"lint:i18n": "node scripts/check-i18n-completeness.mjs",
"format": "biome format --write .",
"typecheck": "cross-env NODE_OPTIONS=--max-old-space-size=4096 pnpm -r --workspace-concurrency=1 typecheck",
"clean": "pnpm -r --parallel clean && node -e \"require('node:fs').rmSync('node_modules',{recursive:true,force:true})\"",
"version:patch": "node scripts/bump-version.mjs patch",
"version:minor": "node scripts/bump-version.mjs minor",
"version:major": "node scripts/bump-version.mjs major",
"version:set": "node scripts/bump-version.mjs set",
"sync:models": "node scripts/sync-models.mjs",
"lint:scripts": "bash -n scripts/install-mailbox-bridge-skills.sh",
"check:browser": "node scripts/check-browser-runtime.mjs",
"check:browser:smoke": "node scripts/check-browser-runtime.mjs --smoke",
"install:browser": "node scripts/check-browser-runtime.mjs --install",
"check:node-pty": "node scripts/check-node-pty.mjs",
"release:check": "pnpm audit --audit-level=moderate && pnpm build && node scripts/check-package-contracts.mjs && pnpm check:node-pty && pnpm lint:i18n && pnpm typecheck && pnpm test",
"release:dry": "pnpm publish -r --dry-run --no-git-checks --force",
"release": "pnpm release:check && pnpm publish -r --access public --no-git-checks",
"prepublishOnly": "pnpm test:guard",
"test:guard": "vitest run packages/plugins/tests/catalog.test.ts packages/plugins/tests/plugin-teardown.test.ts packages/plugins/tests/smoke.test.ts",
"setup:hooks": "git config core.hooksPath .githooks",
"postinstall": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@biomejs/biome": "2.5.2",
"@playwright/test": "^1.61.1",
"@types/node": "^26.1.1",
"@vitest/coverage-v8": "^4.1.10",
"@wrongstack/tools": "workspace:*",
"cross-env": "^10.1.0",
"esbuild": "^0.28.1",
"jsdom": "^29.1.1",
"typescript": "^7.0.2",
"undici-types": "^8.7.0",
"vitest": "^4.1.10"
},
"overrides": {
"dompurify": ">=3.4.11",
"esbuild": "^0.28.1",
"undici-types": "^8.5.0"
}
}