claude-pangu 0.9.0 → 1.0.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/.claude-plugin/plugin.json +6 -2
- package/package.json +1 -1
- package/scripts/cli.js +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://code.claude.com/plugin-schema.json",
|
|
3
3
|
"name": "oh-my-claude",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"description": "基于中国传统文化的 Claude Code 智能编排插件 - A Claude Code plugin inspired by Chinese traditional culture",
|
|
6
6
|
"author": "ZDragon17",
|
|
7
7
|
"contributors": [
|
|
@@ -49,7 +49,11 @@
|
|
|
49
49
|
"claude": ">=1.0.0",
|
|
50
50
|
"node": ">=16.0.0"
|
|
51
51
|
},
|
|
52
|
-
"os": [
|
|
52
|
+
"os": [
|
|
53
|
+
"darwin",
|
|
54
|
+
"linux",
|
|
55
|
+
"win32"
|
|
56
|
+
],
|
|
53
57
|
"dependencies": {
|
|
54
58
|
"optional": {
|
|
55
59
|
"jq": ">=1.6",
|
package/package.json
CHANGED