-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 5.8 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 5.8 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@ax-llm/ax-monorepo",
"type": "module",
"description": "Monorepo for the best library to work with LLMs - Ax",
"repository": {
"type": "git",
"url": "https://github.com/ax-llm/ax.git"
},
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"build": "npm run build --workspaces --if-present",
"ci:verify": "npm run build && npm test",
"fix": "npm run fix --workspaces --if-present",
"test": "run-s test:axir:tools test:axir test:axir:packages test:mcp-events:generated test:mcp-oauth test:mcp-interop test:examples:generated test:format test:lint test:tests test:spelling",
"test:axir:tools": "vitest run scripts/axir-backlog.test.js scripts/axir-conformance-sync.test.js scripts/ci-scope.test.js",
"test:axir": "node scripts/test-axir.mjs",
"test:axir:packages": "npm run axir:check-packages",
"test:examples:generated": "node scripts/test-generated-examples.mjs",
"test:mcp-events:generated": "node --import=tsx scripts/test-generated-mcp-events.ts",
"test:mcp-oauth": "node --import=tsx scripts/test-mcp-oauth.ts",
"test:mcp-interop": "node --import=tsx scripts/test-mcp-interop.ts",
"mcp:interop:production": "node --env-file=.env --import=tsx scripts/mcp-interop-production.ts",
"axir": "node scripts/run-axir.mjs",
"axir:backlog": "node scripts/axir-backlog.mjs",
"axir:backlog:check": "node scripts/axir-backlog.mjs check-pr",
"axir:backlog:render": "node scripts/axir-backlog.mjs render",
"axir:backlog:validate": "node scripts/axir-backlog.mjs validate",
"axir:conformance:check": "node --import=tsx scripts/axir-conformance-sync.mjs check",
"axir:conformance:write": "node --import=tsx scripts/axir-conformance-sync.mjs write",
"axir:generate-packages": "node scripts/generate-axir-packages.mjs",
"axir:check-packages": "node scripts/check-axir-packages.mjs",
"axir:audit:coverage": "node scripts/run-axir.mjs audit coverage ir/axcore/root.axir",
"axir:perturb:check": "node scripts/axir-perturb-check.mjs",
"axir:gate:response-perturb": "node scripts/axir-response-perturb-check.mjs",
"axir:gate:anti-facade": "node scripts/axir-anti-facade-check.mjs",
"axir:gate:ledger": "node scripts/axir-ledger-check.mjs",
"axir:gate:agent-semantic-parity": "node scripts/axir-agent-parity-check.mjs --self-test",
"axir:semantic-parity": "run-s axir:conformance:check axir:gate:agent-semantic-parity",
"axir:gate:prompt-sync": "node scripts/axir-prompt-sync-check.mjs",
"skills:check": "node scripts/check-skills.mjs",
"axir:verify:dev": "node scripts/run-axir.mjs verify --mode dev --jobs 0 --progress",
"axir:verify:release": "node scripts/run-axir.mjs verify --mode release --jobs 0 --progress",
"test:format": "biome format package.json .github/workflows/ci.yml scripts src --files-ignore-unknown=true",
"test:lint": "biome lint .",
"test:tests": "npm run test --workspaces --if-present",
"test:spelling": "cspell \"{README.md,.github/*.md,src/**/*.ts}\" --quiet --color --config cspell.json",
"coverage": "npm run coverage --workspaces --if-present",
"doc:build:markdown": "npm run doc:build:markdown --workspaces --if-present",
"website:prepare": "node scripts/website-prepare.mjs",
"website:index": "pagefind --site website/public --output-path website/public/pagefind --include-characters '@/._-+#'",
"website:hugo": "node scripts/website-hugo-build.mjs",
"website:build": "npm run doc:build:markdown && npm run website:prepare && npm run website:hugo && npm run website:index",
"website:dev": "npm run website:prepare && hugo server --source website",
"website:academy:test": "node --test website/tests/academy-engine.test.mjs",
"website:check": "npm run website:academy:test && node scripts/check-website-links.mjs",
"prepare": "lefthook install",
"release": "npm run release --workspaces --if-present && npm run axir:generate-packages && release-it --no-increment",
"publish": "npm run publish --workspaces --if-present -- --provenance --access public",
"dependencies:rebuild": "rm -rf package-lock.json && rm -rf node_modules && rm -rf */*/node_modules && npm i --no-audit --no-fund",
"tsx": "node --env-file=.env --import=tsx",
"example": "node scripts/run-example.mjs",
"example:python": "node scripts/run-example.mjs python",
"example:java": "node scripts/run-example.mjs java",
"example:cpp": "node scripts/run-example.mjs cpp",
"example:go": "node scripts/run-example.mjs go",
"example:rust": "node scripts/run-example.mjs rust",
"fix:format": "biome format --write .",
"fix:lint": "biome lint --write .",
"fix:check": "biome check --write .",
"lint": "biome lint .",
"format": "biome format .",
"check": "biome check .",
"init-package": "node scripts/initPackage.js"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@release-it/bumper": "^7.0.5",
"@release-it/conventional-changelog": "^11.0.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.13.10",
"@vitest/coverage-v8": "^3.2.1",
"cspell": "^8.17.3",
"lefthook": "^1.7.15",
"mermaid": "^11.15.0",
"npm-run-all2": "^8.0.4",
"pagefind": "^1.5.2",
"release-it": "^19.0.3",
"tsup": "^8.5.0",
"tsx": "^4.22.3",
"typedoc": "^0.28.5",
"typedoc-plugin-frontmatter": "^1.2.1",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.8.3",
"vitest": "^3.2.1"
},
"bugs": {
"url": "https://github.com/@ax-llm/ax/issues"
},
"homepage": "https://github.com/ax-llm/ax#readme",
"directories": {
"example": "examples"
},
"workspaces": [
"src/*",
"!src/data"
],
"overrides": {
"release-it": {
"undici": "6.24.0"
}
},
"author": "Vikram <https://twitter.com/dosco>",
"private": "true",
"version": "23.0.9"
}