-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.53 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.53 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
{
"name": "ofw-tools",
"version": "1.11.0",
"description": "This repository contains a set of small, focused tools that help analyze communications, plan visitation schedules, and perform basic family-law-related calculations (Moore/Marsden, apportionment). These are optimized for quick, local use as you prepare materials for court.",
"main": "index.js",
"scripts": {
"brew:install": "/bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"",
"test": "jest",
"prompts:validate": "node scripts/validate-prompts.js",
"ofw:analyze": "node ofw.js",
"ofw:analyze-ollama": "node ofw.js --ollama",
"ofw:clusters": "node message-volume.js",
"visitation": "node visitation-cal.js",
"nth-week": "node nth-week.js",
"moore-marsden": "node moore-marsden.js",
"apportionment": "node apportionment-calc.js",
"apportionment:ledger": "node apportionment-ledger.js",
"dissomaster": "node dissomaster.js",
"imessage": "node imessage.js",
"imessage:install": "brew install imessage-exporter",
"imessage:export": "imessage-exporter --export-type plain-text --output-dir ./output",
"paylocity": "node paylocity.js",
"paylocity:summary": "node paylocity-summary.js"
},
"author": "",
"license": "CC0-1.0",
"dependencies": {
"fs-extra": "^11.2.0",
"natural": "^6.8.0",
"ollama": "^0.5.8",
"pdf-parse": "^1.1.1",
"polarity": "^4.0.1",
"sentiment": "^5.0.2",
"winston": "^3.14.2"
},
"devDependencies": {
"jest": "^29.7.0"
}
}