@yadsh/dsh-user-correction-miner 0.1.0 → 0.1.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 +30 -30
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yadsh/dsh-user-correction-miner",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Mine durable project-rule candidates from user corrections in DeepSeek Harness sessions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -34,15 +34,6 @@
34
34
  "patch": "./cordis.patch.yml"
35
35
  }
36
36
  },
37
- "scripts": {
38
- "build": "tsc -p tsconfig.build.json",
39
- "lint": "eslint src tests scripts",
40
- "typecheck": "tsc -p tsconfig.json --noEmit",
41
- "test": "vitest run",
42
- "verify:package": "node scripts/verify-package.mjs",
43
- "verify": "pnpm run verify:package",
44
- "check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build && pnpm run verify"
45
- },
46
37
  "publishConfig": {
47
38
  "access": "public",
48
39
  "registry": "https://registry.npmjs.org/"
@@ -51,28 +42,37 @@
51
42
  "node": ">=22"
52
43
  },
53
44
  "peerDependencies": {
54
- "@deepseek-ai/cordis": "catalog:dsh",
55
- "@deepseek-ai/schemastery": "catalog:dsh",
56
- "@deepseek-ai/dsh-llm": "catalog:dsh",
57
- "@deepseek-ai/dsh-session": "catalog:dsh",
58
- "@deepseek-ai/dsh-session-query": "catalog:dsh",
59
- "@deepseek-ai/dsh-storage-domain": "catalog:dsh"
45
+ "@deepseek-ai/cordis": "^4.0.1",
46
+ "@deepseek-ai/schemastery": "^3.18.1",
47
+ "@deepseek-ai/dsh-llm": ">=0.1.1-rc.2 <0.2.0",
48
+ "@deepseek-ai/dsh-session": ">=0.1.1-rc.2 <0.2.0",
49
+ "@deepseek-ai/dsh-session-query": ">=0.1.1-rc.2 <0.2.0",
50
+ "@deepseek-ai/dsh-storage-domain": ">=0.1.1-rc.2 <0.2.0"
60
51
  },
61
52
  "dependencies": {
62
- "@yadsh/dsh-plugin-log": "workspace:^",
63
- "zod": "^4.4.3"
53
+ "zod": "^4.4.3",
54
+ "@yadsh/dsh-plugin-log": "^0.2.1"
64
55
  },
65
56
  "devDependencies": {
66
- "@deepseek-ai/cordis": "catalog:dsh-dev",
67
- "@deepseek-ai/schemastery": "catalog:dsh-dev",
68
- "@deepseek-ai/dsh-llm": "catalog:dsh-dev",
69
- "@deepseek-ai/dsh-session": "catalog:dsh-dev",
70
- "@deepseek-ai/dsh-session-query": "catalog:dsh-dev",
71
- "@deepseek-ai/dsh-storage-domain": "catalog:dsh-dev",
72
- "@types/node": "catalog:tooling",
73
- "@yadsh/dsh-config": "workspace:^",
74
- "eslint": "catalog:tooling",
75
- "typescript": "catalog:tooling",
76
- "vitest": "catalog:tooling"
57
+ "@deepseek-ai/cordis": "4.0.1",
58
+ "@deepseek-ai/schemastery": "3.18.1",
59
+ "@deepseek-ai/dsh-llm": "0.1.1-rc.2",
60
+ "@deepseek-ai/dsh-session": "0.1.1-rc.2",
61
+ "@deepseek-ai/dsh-session-query": "0.1.1-rc.2",
62
+ "@deepseek-ai/dsh-storage-domain": "0.1.1-rc.2",
63
+ "@types/node": "^26.4.0",
64
+ "eslint": "10.9.1",
65
+ "typescript": "^5.9.2",
66
+ "vitest": "^4.1.11",
67
+ "@yadsh/dsh-config": "^0.0.0"
68
+ },
69
+ "scripts": {
70
+ "build": "tsc -p tsconfig.build.json",
71
+ "lint": "eslint src tests scripts",
72
+ "typecheck": "tsc -p tsconfig.json --noEmit",
73
+ "test": "vitest run",
74
+ "verify:package": "node scripts/verify-package.mjs",
75
+ "verify": "pnpm run verify:package",
76
+ "check": "pnpm run lint && pnpm run typecheck && pnpm run test && pnpm run build && pnpm run verify"
77
77
  }
78
- }
78
+ }