-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
92 lines (92 loc) · 2.97 KB
/
package.json
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
{
"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 --workspace='!@ax-llm/ax-docs' --if-present",
"fix": "npm run fix --workspaces --if-present",
"test": "run-s test:*",
"test:tests": "npm run test --workspaces --if-present",
"test:spelling": "cspell --quiet \"{README.md,.github/*.md,src/**/*.ts}\"",
"coverage": "npm run fix --workspaces --if-present",
"doc:build": "run-s doc:build:markdown doc:build:html",
"doc:build:markdown": "npm run doc:build:markdown --workspaces --if-present",
"doc:build:html": "npm run build --workspace=@ax-llm/ax-docs",
"version": "standard-version",
"prepare": "npm run test",
"release": "npm run release --workspaces --if-present && release-it --no-increment",
"publish": "npm run publish --workspaces --if-present -- --provenance --access public",
"git-cz": "npx git-cz",
"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"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@release-it/bumper": "^7.0.1",
"@release-it/conventional-changelog": "^10.0.0",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"c8": "^10.1.3",
"cspell": "^8.17.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^8.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-require-extensions": "^0.1.3",
"gh-pages": "^6.1.1",
"glob": "^11.0.1",
"husky": "^9.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.1",
"release-it": "^18.1.2",
"standard-version": "^9.5.0",
"tsd": "^0.31.2",
"tsimp": "^2.0.12",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typedoc": "^0.27.7",
"typedoc-plugin-frontmatter": "^1.2.1",
"typedoc-plugin-markdown": "^4.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/@ax-llm/ax/issues"
},
"homepage": "https://github.com/@ax-llm/ax#readme",
"directories": {
"example": "examples"
},
"workspaces": [
"src/*"
],
"author": "Vikram <https://twitter.com/dosco>",
"private": "true",
"version": "11.0.22",
"dependencies": {
"@ai-sdk/provider-utils": "^2.1.8",
"@astrojs/tailwind": "^6.0.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/react": "^19.0.10",
"ai": "^4.1.41",
"astro": "^5.3.0",
"zod": "^3.24.2"
}
}