@plurnk/plurnk 0.31.0 → 0.38.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,42 +1,46 @@
1
1
  {
2
- "name": "@plurnk/plurnk",
3
- "version": "0.31.0",
4
- "description": "Plurnk client app — CLI/TUI consuming plurnk-service. Type prompts at a terminal, drive real model loops through the protocol.",
5
- "type": "module",
6
- "license": "MIT",
7
- "publishConfig": {
8
- "access": "public"
9
- },
10
- "engines": {
11
- "node": ">=25"
12
- },
13
- "bin": {
14
- "plurnk": "bin/plurnk.js"
15
- },
16
- "files": [
17
- "bin/plurnk.js",
18
- "dist/**/*",
19
- "README.md"
20
- ],
21
- "scripts": {
22
- "test:lint": "tsc --noEmit",
23
- "test:unit": "node --test 'src/**/*.test.ts'",
24
- "test:intg": "node --test --env-file-if-exists=.env 'test/intg/**/*.test.ts'",
25
- "test": "npm run test:lint && npm run test:unit",
26
- "test:all": "npm run test:lint && npm run test:unit && npm run test:intg",
27
- "build:dist": "tsc -p tsconfig.build.json",
28
- "build": "npm run build:dist",
29
- "prepare": "npm run build"
30
- },
31
- "devDependencies": {
32
- "@types/node": "^25.8.0",
33
- "@types/ws": "^8.18.1",
34
- "typescript": "^6.0.3"
35
- },
36
- "dependencies": {
37
- "ws": "^8.20.1"
38
- },
39
- "optionalDependencies": {
40
- "@plurnk/plurnk-service": "*"
41
- }
2
+ "name": "@plurnk/plurnk",
3
+ "version": "0.38.0",
4
+ "description": "Plurnk client app — CLI/TUI consuming plurnk-service. Type prompts at a terminal, drive real model loops through the protocol.",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "engines": {
11
+ "node": ">=25"
12
+ },
13
+ "bin": {
14
+ "plurnk": "bin/plurnk.js"
15
+ },
16
+ "files": [
17
+ "bin/plurnk.js",
18
+ "dist/**/*",
19
+ "README.md"
20
+ ],
21
+ "scripts": {
22
+ "test:lint": "tsc --noEmit",
23
+ "test:unit": "node --test 'src/**/*.test.ts'",
24
+ "test:intg": "node --test --env-file-if-exists=.env 'test/intg/**/*.test.ts'",
25
+ "test": "npm run test:lint && npm run test:unit",
26
+ "test:all": "npm run test:lint && npm run test:unit && npm run test:intg && npm run test:tui",
27
+ "build:dist": "tsc -p tsconfig.build.json",
28
+ "build": "npm run build:dist",
29
+ "prepare": "npm run build",
30
+ "test:tui": "node --test --env-file-if-exists=.env 'test/tui/**/*.test.ts'",
31
+ "build:global:install": "npm run build && npm install -g .",
32
+ "build:global:uninstall": "npm uninstall -g @plurnk/plurnk",
33
+ "build:local:install": "node scripts/install-sandbox.mjs install",
34
+ "build:local:uninstall": "node scripts/install-sandbox.mjs uninstall",
35
+ "test:installation": "node scripts/test-installation.mjs"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^25.8.0",
39
+ "@types/ws": "^8.18.1",
40
+ "node-pty": "^1.1.0",
41
+ "typescript": "^6.0.3"
42
+ },
43
+ "dependencies": {
44
+ "ws": "^8.20.1"
45
+ }
42
46
  }