dsh-rules 0.1.0 → 0.1.2

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,8 +1,21 @@
1
1
  {
2
2
  "name": "dsh-rules",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "DSH rules plugin: activate rule prompts / markdown documents by glob-matching the files an agent reads or edits (Claude Code rules.md style).",
5
+ "keywords": [
6
+ "dsh",
7
+ "dsh-plugin",
8
+ "deepseek-harness",
9
+ "rules",
10
+ "claude-code",
11
+ "agents",
12
+ "prompt"
13
+ ],
5
14
  "license": "MIT",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "git+https://github.com/rj-jiangyichen/dsh-rules.git"
18
+ },
6
19
  "type": "module",
7
20
  "main": "lib/index.js",
8
21
  "exports": {
@@ -29,12 +42,14 @@
29
42
  }
30
43
  },
31
44
  "dependencies": {
45
+ "picomatch": "^4.0.2",
46
+ "yaml": "^2.9.0"
47
+ },
48
+ "peerDependencies": {
32
49
  "@deepseek-ai/cordis": "^4.0.1",
33
50
  "@deepseek-ai/dsh-home-paths": "^0.1.0-rc.6",
34
51
  "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
35
- "@deepseek-ai/schemastery": "^3.18.1",
36
- "picomatch": "^4.0.2",
37
- "yaml": "^2.9.0"
52
+ "@deepseek-ai/schemastery": "^3.18.1"
38
53
  },
39
54
  "devDependencies": {
40
55
  "@deepseek-ai/cordis": "^4.0.1",
@@ -44,10 +59,13 @@
44
59
  "picomatch": "^4.0.2",
45
60
  "yaml": "^2.9.0"
46
61
  },
47
- "scripts": {
48
- "test": "node --test"
62
+ "publishConfig": {
63
+ "access": "public"
49
64
  },
50
65
  "engines": {
51
66
  "node": "^22.19.0 || >=24.0.0"
67
+ },
68
+ "scripts": {
69
+ "test": "node --test"
52
70
  }
53
- }
71
+ }