@awiki/dsh-plugin 0.3.1-rc.1 → 0.3.1

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 +16 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awiki/dsh-plugin",
3
- "version": "0.3.1-rc.1",
3
+ "version": "0.3.1",
4
4
  "description": "AWiki identity and messaging plugin for DeepSeek Harness",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -65,6 +65,19 @@
65
65
  "THIRD_PARTY_NOTICES.md",
66
66
  "LICENSE"
67
67
  ],
68
+ "scripts": {
69
+ "build:types": "tsc -p tsconfig.host.json && tsc -p tsconfig.client.json",
70
+ "build:typert": "node scripts/generate-typert.mjs",
71
+ "build:bundle": "pnpm run build:typert && tsdown && node scripts/normalize-built.mjs",
72
+ "build": "pnpm run build:types && pnpm run build:bundle",
73
+ "typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.client.json --noEmit",
74
+ "test": "vitest run",
75
+ "check:generated": "node scripts/check-generated.mjs",
76
+ "check:public": "node scripts/check-public.mjs",
77
+ "verify": "pnpm run check:public && pnpm run build && pnpm run typecheck && pnpm run check:generated && pnpm run test",
78
+ "verify:workspace": "pnpm run verify && pnpm --filter @awiki/dsh-model-proxy run verify",
79
+ "prepack": "pnpm run verify"
80
+ },
68
81
  "keywords": [
69
82
  "awiki",
70
83
  "deepseek",
@@ -178,16 +191,5 @@
178
191
  "engines": {
179
192
  "node": "^22.19.0 || >=24.0.0"
180
193
  },
181
- "scripts": {
182
- "build:types": "tsc -p tsconfig.host.json && tsc -p tsconfig.client.json",
183
- "build:typert": "node scripts/generate-typert.mjs",
184
- "build:bundle": "pnpm run build:typert && tsdown && node scripts/normalize-built.mjs",
185
- "build": "pnpm run build:types && pnpm run build:bundle",
186
- "typecheck": "tsc -p tsconfig.host.json --noEmit && tsc -p tsconfig.client.json --noEmit",
187
- "test": "vitest run",
188
- "check:generated": "node scripts/check-generated.mjs",
189
- "check:public": "node scripts/check-public.mjs",
190
- "verify": "pnpm run check:public && pnpm run build && pnpm run typecheck && pnpm run check:generated && pnpm run test",
191
- "verify:workspace": "pnpm run verify && pnpm --filter @awiki/dsh-model-proxy run verify"
192
- }
193
- }
194
+ "packageManager": "pnpm@11.22.0"
195
+ }