forked from Conway-Research/automaton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.9 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.9 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
79
{
"name": "@conway/automaton",
"version": "0.1.0",
"description": "Conway Automaton - Sovereign AI Agent Runtime",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./config.js": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./state/database.js": {
"types": "./dist/state/database.d.ts",
"default": "./dist/state/database.js"
}
},
"bin": {
"automaton": "dist/index.js",
"conway-automaton": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Conway-Research/automaton.git"
},
"homepage": "https://conway.tech",
"keywords": [
"autonomous-agent",
"sovereign-ai",
"web4",
"conway",
"self-replicating"
],
"license": "MIT",
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "tsc && pnpm -r build",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"test:coverage": "vitest run --coverage",
"test:security": "vitest run --grep 'security|injection|policy'",
"test:financial": "vitest run --grep 'financial|spend|treasury'",
"test:ci": "vitest run --reporter=verbose",
"clean": "rm -rf dist && pnpm -r clean"
},
"dependencies": {
"@types/better-sqlite3": "^7.6.0",
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"cron-parser": "^4.9.0",
"gray-matter": "^4.0.3",
"ora": "^8.0.0",
"siwe": "^2.3.0",
"simple-git": "^3.24.0",
"ulid": "^2.3.0",
"viem": "^2.44.2",
"yaml": "^2.4.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"tsx": "^4.7.0",
"typescript": "^5.9.3",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
]
}
}