@epoch-agent/infra 0.1.0

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,51 @@
1
+ {
2
+ "name": "@epoch-agent/infra",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "epoch-agent 基础设施:路径真源、SQLite 连接与迁移、日志、平台兼容、命令安全表",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/Ddbor/epoch-agent.git"
9
+ },
10
+ "license": "Apache-2.0",
11
+ "author": "epoch-agent",
12
+ "type": "module",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js"
17
+ }
18
+ },
19
+ "main": "./dist/index.js",
20
+ "types": "./dist/index.d.ts",
21
+ "files": [
22
+ "dist"
23
+ ],
24
+ "dependencies": {
25
+ "better-sqlite3": "^13.0.2",
26
+ "js-yaml": "^5.2.3",
27
+ "zod": "^4.4.3"
28
+ },
29
+ "devDependencies": {
30
+ "@types/better-sqlite3": "^7.6.13",
31
+ "@types/js-yaml": "^4.0.9",
32
+ "@types/node": "^22.0.0",
33
+ "tsup": "^8.3.6",
34
+ "typescript": "^5.8.3",
35
+ "vitest": "^3.0.0"
36
+ },
37
+ "optionalDependencies": {
38
+ "@epoch-agent/vendor-ripgrep-darwin-arm64": "14.2.0",
39
+ "@epoch-agent/vendor-ripgrep-win32-x64": "14.2.0",
40
+ "@epoch-agent/vendor-ripgrep-darwin-x64": "14.2.0"
41
+ },
42
+ "engines": {
43
+ "node": ">=22.0.0"
44
+ },
45
+ "scripts": {
46
+ "build": "tsup && node scripts/copy-locales.mjs",
47
+ "dev": "tsup --watch",
48
+ "test": "vitest run",
49
+ "typecheck": "tsc --noEmit"
50
+ }
51
+ }