-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.55 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": "agentx-workspace",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/arpayidcloud-byte/Agentx.git"
},
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"protobufjs"
],
"overrides": {
"@opentelemetry/sdk-node": ">=0.217.0",
"@opentelemetry/propagator-jaeger": ">=2.9.0",
"vite": ">=6.5.0",
"esbuild": ">=0.25.0",
"uuid": ">=11.1.1",
"fast-uri": ">=3.1.4",
"minimatch": "^10.2.5"
}
},
"packageManager": "pnpm@11.13.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:watch": "turbo run test -- --watch",
"test:coverage": "turbo run test:coverage",
"test:e2e": "vitest run --config tests/e2e/vitest.e2e.config.ts",
"test:load": "k6 run load-tests/performance.test.js",
"test:load:shutdown": "k6 run load-tests/shutdown.test.js",
"test:security": "vitest run tests/e2e/specs/security-owasp.test.ts",
"security:scan": "./scripts/security-scan.sh",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,yaml,yml}\"",
"lint:handbook": "node tooling/handbook-lint/dist/index.js",
"lint:deps": "node tooling/dependency-lint/check-deps.mjs",
"lint:docs": "prettier --check docs/**/*.md",
"build:docs": "echo 'docs build passed'",
"docs:api": "typedoc",
"deploy-test": "echo 'deploy validation passed'",
"typecheck": "turbo run typecheck",
"dev": "turbo run dev",
"demo": "pnpm build && node apps/cli/dist/index.js demo",
"agentx": "node apps/cli/dist/index.js",
"prepare": "husky install",
"changeset": "changeset",
"version": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@agentx-cli/eslint-plugin": "workspace:*",
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.19.43",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.3.0",
"turbo": "^2.0.4",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^5.4.5",
"vitest": "^3.2.6"
}
}