-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (32 loc) · 801 Bytes
/
package.json
File metadata and controls
35 lines (32 loc) · 801 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
{
"name": "numerology-cycle-8",
"version": "1.0.0",
"description": "TITAN Decider system for Cycle-8. Executes symbolic command sequences, logs EOD states, and syncs Builder Codex entries.",
"main": "scripts/core-functions.js",
"scripts": {
"start": "node scripts/core-functions.js",
"sync": "node sync/prompts.js",
"log": "node logs/logger.js",
"codex": "echo 'Load Builder-Codex_Cycle-8 manually or use Obsidian sync.'"
},
"keywords": [
"numerology",
"titan",
"mal",
"cycle-8",
"symbolic-runtime",
"prompt-engineering"
],
"author": "brfor@lil-twilight",
"license": "MIT",
"type": "module",
"dependencies": {
"dayjs": "^1.11.9"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}