-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.45 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.45 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
{
"name": "patina-cli",
"version": "3.3.0",
"description": "AI text humanizer CLI — detects and removes AI writing patterns",
"type": "module",
"main": "src/cli.js",
"bin": {
"patina": "bin/patina.js"
},
"scripts": {
"test": "node --test tests/e2e/*.test.js",
"bot": "bash ops/harness.sh",
"marketing:runtime:bootstrap": "bash ops/marketing-runtime-bootstrap.sh",
"marketing:runtime:status": "bash ops/marketing-runtime-cli.sh status",
"marketing:runtime:restart": "bash ops/marketing-runtime-cli.sh gateway restart",
"marketing:runtime:logs": "bash ops/marketing-runtime-cli.sh logs --follow",
"runtime:bootstrap": "bash ops/runtime-bootstrap.sh",
"runtime:component-bridge": "node ops/component-bridge.mjs",
"runtime:component-bridge:once": "COMPONENT_BRIDGE_ONCE=true COMPONENT_BRIDGE_SEED_HISTORY=false node ops/component-bridge.mjs",
"runtime:status": "bash ops/runtime-cli.sh status",
"runtime:restart": "bash ops/runtime-cli.sh gateway restart",
"runtime:logs": "bash ops/runtime-cli.sh logs --follow",
"runtime:component-bridge:logs": "journalctl --user -u patina-component-bridge -f",
"runtime:component-bridge:status": "systemctl --user status patina-component-bridge"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ai",
"humanizer",
"writing",
"claude-code",
"nlp"
],
"license": "MIT",
"private": false
}