-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1014 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1014 Bytes
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
{
"name": "elizoscog-workers-for-platforms",
"version": "1.0.0",
"description": "ElizaOS-OpenCog-GnuCash AI-Financial Intelligence deployed on Cloudflare Workers for Platforms",
"license": "GPL-2.0",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@cloudflare/d1": "^1.4.1",
"@cloudflare/workers-types": "^4.20250913.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"better-sqlite3": "^12.2.0",
"eslint": "^9.35.0",
"typescript": "^5.9.2",
"wrangler": "^4.37.0"
},
"scripts": {
"start": "wrangler dev",
"deploy": "wrangler deploy",
"build": "npx tsc --noEmit",
"lint": "npx eslint \"src/**/*.{ts,js}\" --fix",
"lint:check": "npx eslint \"src/**/*.{ts,js}\"",
"test": "bash test-suite.sh",
"test:unit": "echo 'Unit tests not yet implemented'",
"format": "npx prettier --write '**/*.{ts,js,cjs,json}'"
},
"dependencies": {
"hono": "^4.9.7",
"workers-qb": "^1.11.2"
}
}