@axon-assistant/core 2026.8.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,65 @@
1
+ {
2
+ "name": "@axon-assistant/core",
3
+ "version": "2026.8.23",
4
+ "comment:version": "Заглушка. Настоящий номер проставляется из git-тега при публикации: см. scripts/release-npm.mjs. Версия, которую правят руками, рано или поздно расходится с тем, что опубликовано.",
5
+ "description": "Ядро Axon: персональный AI-агент, который живёт на вашей машине",
6
+ "keywords": [
7
+ "ai",
8
+ "agent",
9
+ "assistant",
10
+ "self-hosted",
11
+ "llm"
12
+ ],
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/bigtaed-sys/axon.git",
17
+ "directory": "packages/daemon"
18
+ },
19
+ "homepage": "https://github.com/bigtaed-sys/axon#readme",
20
+ "bugs": "https://github.com/bigtaed-sys/axon/issues",
21
+ "type": "module",
22
+ "main": "./dist/index.js",
23
+ "types": "./dist/index.d.ts",
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ }
29
+ },
30
+ "bin": {
31
+ "axon": "dist/cli.js"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "README.md"
36
+ ],
37
+ "engines": {
38
+ "node": ">=22.5"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "build": "tsc --build && node scripts/bundle.mjs",
45
+ "typecheck": "tsc --noEmit",
46
+ "start": "node dist/cli.js",
47
+ "prepublishOnly": "npm run build"
48
+ },
49
+ "dependencies": {
50
+ "@anthropic-ai/sdk": "^0.116.0",
51
+ "iconv-lite": "^0.6.3",
52
+ "pino": "^9.5.0",
53
+ "telegram": "^2.26.22",
54
+ "ws": "^8.18.0",
55
+ "zod": "^3.24.1",
56
+ "zod-to-json-schema": "^3.24.1"
57
+ },
58
+ "devDependencies": {
59
+ "@axon/core": "*",
60
+ "@axon/protocol": "*",
61
+ "@types/ws": "^8.5.13",
62
+ "esbuild": "^0.24.2",
63
+ "@axon/telegram": "*"
64
+ }
65
+ }