-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.94 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.94 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
{
"name": "@clipboard-health/core-utils",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"affected": "nx affected --base main --configuration ci --parallel 8 --targets build,lint,test",
"all": "node --run ci:check && nx run-many --configuration ci --parallel 8 --targets build,lint,test",
"architecture:check": "depcruise packages/*/src",
"ci:check": "node --run format:check && node --run cspell -- . && syncpack lint && node --run embed:check && node --run knip && node --run lint && node --run lint:md && node --run architecture:check",
"ci:install": "npm clean-install",
"cspell": "cspell --no-summary --no-progress --no-must-find-files",
"docs": "rm -rf docs && typedoc",
"embed": "tsx packages/embedex/src/bin/cli.ts --sourcesGlob 'packages/*/examples/**/*.{md,ts}'",
"embed:check": "node --run embed -- --check",
"eval": "promptfoo eval --config evals/promptfooconfig.ts",
"eval:view": "promptfoo view --yes",
"format": "oxfmt",
"format:check": "oxfmt --check",
"hook:pre-commit": "lint-staged",
"hook:pre-push": "node --run format:check && node --run lint && node --run knip && node --run architecture:check",
"knip": "NX_DAEMON=false knip",
"lint": "oxlint --deny-warnings",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"postinstall": "node --run sync-ai-rules",
"prepare": "husky",
"sync-ai-rules": "nx build ai-rules && node ./dist/packages/ai-rules/scripts/sync.js common --exclude common/featureFlags"
},
"dependencies": {
"tslib": "2.8.1"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.2.114",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@nx/eslint": "22.6.5",
"@nx/eslint-plugin": "22.6.5",
"@nx/js": "22.6.5",
"@nx/vitest": "22.6.5",
"@nx/webpack": "22.6.5",
"@swc-node/register": "1.11.1",
"@swc/core": "1.15.30",
"@swc/helpers": "0.5.21",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/node": "24.12.2",
"@typescript/native-preview": "7.0.0-dev.20260419.1",
"@vitest/coverage-v8": "4.1.4",
"cspell": "10.0.0",
"dependency-cruiser": "17.3.10",
"eslint": "8.57.1",
"eslint-plugin-promise": "7.2.1",
"husky": "9.1.7",
"jsonc-eslint-parser": "3.1.0",
"knip": "6.4.1",
"lint-staged": "16.4.0",
"markdownlint-cli2": "0.22.0",
"nx": "22.6.5",
"oxfmt": "0.45.0",
"oxlint": "1.60.0",
"oxlint-tsgolint": "0.21.1",
"promptfoo": "0.121.5",
"syncpack": "14.3.0",
"ts-node": "11.0.0-beta.1",
"tsx": "4.21.0",
"typedoc": "0.28.19",
"typescript": "5.9.3",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"overrides": {
"@anthropic-ai/claude-agent-sdk": {
"zod": "3.25.76"
},
"@swc/core": "$@swc/core",
"ts-node": "11.0.0-beta.1",
"tsconfig-paths": "4.2.0"
},
"engines": {
"node": "24.15.0",
"npm": "~11.12.0"
}
}