@plurnk/plurnk 0.54.0 → 0.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurnk/plurnk",
3
- "version": "0.54.0",
3
+ "version": "0.58.0",
4
4
  "description": "Plurnk client app — CLI/TUI consuming plurnk-service. Type prompts at a terminal, drive real model loops through the protocol.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -24,9 +24,11 @@
24
24
  "test:intg": "node --test --env-file-if-exists=.env 'test/intg/**/*.test.ts'",
25
25
  "test": "npm run test:lint && npm run test:unit",
26
26
  "test:all": "npm run test:lint && npm run test:unit && npm run test:intg && npm run test:tui",
27
+ "deps:fresh": "npm outdated",
27
28
  "build:dist": "tsc -p tsconfig.build.json",
28
29
  "build": "npm run build:dist",
29
- "prepare": "npm run build",
30
+ "prepare": "git config core.hooksPath .githooks && npm run build",
31
+ "prepublishOnly": "npm run test && npm audit --audit-level=high && npm run deps:fresh",
30
32
  "test:tui": "node --test --test-timeout=600000 --env-file-if-exists=.env 'test/tui/**/*.test.ts'",
31
33
  "build:global:install": "npm run build && npm install -g .",
32
34
  "build:global:uninstall": "npm uninstall -g @plurnk/plurnk",
@@ -35,12 +37,13 @@
35
37
  "test:installation": "node scripts/test-installation.mjs"
36
38
  },
37
39
  "devDependencies": {
38
- "@types/node": "^26.0.0",
40
+ "@types/node": "^26.1.0",
39
41
  "@types/ws": "^8.18.1",
40
42
  "node-pty": "^1.1.0",
41
43
  "typescript": "^6.0.3"
42
44
  },
43
45
  "dependencies": {
44
- "ws": "^8.20.1"
46
+ "@plurnk/plurnk-aliases": "0.1.0",
47
+ "ws": "^8.21.0"
45
48
  }
46
49
  }