-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.63 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.63 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
{
"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 \"{README.md,.github/*.md,src/**/*.ts}\" --quiet --color --config cspell.json",
"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",
"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": "^10.0.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.13.10",
"c8": "^10.1.3",
"cspell": "^8.17.3",
"cz-conventional-changelog": "^3.0.1",
"gh-pages": "^6.1.1",
"glob": "^11.0.1",
"husky": "^9.0.0",
"npm-run-all2": "^8.0.4",
"release-it": "^19.0.3",
"standard-version": "^9.5.0",
"tsd": "^0.32.0",
"tsimp": "^2.0.12",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"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"
],
"author": "Vikram <https://twitter.com/dosco>",
"private": "true",
"version": "19.0.23"
}