@plurnk/plurnk-aliases 1.3.12 → 1.4.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.
Files changed (1) hide show
  1. package/package.json +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plurnk/plurnk-aliases",
3
- "version": "1.3.12",
3
+ "version": "1.4.0",
4
4
  "description": "Zero-dependency parser for the plurnk model-alias cascade (PLURNK_MODEL_<alias>=<provider>/<model>, PLURNK_BASEURL_<alias>). Shared by @plurnk/plurnk-providers and thin plurnk clients that resolve aliases without pulling the provider/tokenizer machinery.",
5
5
  "keywords": [
6
6
  "plurnk",
@@ -8,13 +8,14 @@
8
8
  "provider",
9
9
  "env"
10
10
  ],
11
- "homepage": "https://github.com/plurnk/plurnk-aliases#readme",
11
+ "homepage": "https://github.com/plurnk/plurnk-service/tree/main/plurnk-aliases#readme",
12
12
  "bugs": {
13
- "url": "https://github.com/plurnk/plurnk-aliases/issues"
13
+ "url": "https://repo.possumtech.com/plurnk/plurnk-service/issues"
14
14
  },
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/plurnk/plurnk-aliases.git"
17
+ "url": "git+https://github.com/plurnk/plurnk-service.git",
18
+ "directory": "plurnk-aliases"
18
19
  },
19
20
  "engines": {
20
21
  "node": ">=26"
@@ -43,8 +44,9 @@
43
44
  "test:unit": "node --conditions=plurnk-dev --test src/**/*.test.ts",
44
45
  "test": "npm run test:lint && npm run test:unit",
45
46
  "prepublishOnly": "npm audit --audit-level=moderate && npm test",
47
+ "build:clean": "rm -rf dist",
46
48
  "build:dist": "tsc -p tsconfig.build.json",
47
- "build": "npm run build:dist",
49
+ "build": "npm run build:clean && npm run build:dist",
48
50
  "prepack": "npm run build"
49
51
  }
50
52
  }