openclaw-groupme 0.0.1 → 0.0.3
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.
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
name: Publish to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
contents: read
|
|
10
|
+
id-token: write
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
|
|
16
|
+
steps:
|
|
17
|
+
- name: Checkout
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
|
|
20
|
+
- name: Setup Node.js
|
|
21
|
+
uses: actions/setup-node@v4
|
|
22
|
+
with:
|
|
23
|
+
node-version: 24
|
|
24
|
+
registry-url: https://registry.npmjs.org
|
|
25
|
+
|
|
26
|
+
- name: Show package version
|
|
27
|
+
run: npm pkg get name version
|
|
28
|
+
|
|
29
|
+
- name: Publish package
|
|
30
|
+
run: npm publish --provenance --access public
|
package/package.json
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-groupme",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "OpenClaw GroupMe channel plugin",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/oddrationale/openclaw-groupme"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/oddrationale/openclaw-groupme#readme",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/oddrationale/openclaw-groupme/issues"
|
|
12
|
+
},
|
|
5
13
|
"type": "module",
|
|
6
14
|
"dependencies": {
|
|
7
15
|
"zod": "^4.3.6"
|
|
8
16
|
},
|
|
9
|
-
"
|
|
10
|
-
"openclaw": "
|
|
17
|
+
"peerDependencies": {
|
|
18
|
+
"openclaw": ">=2026.2.0"
|
|
11
19
|
},
|
|
12
20
|
"openclaw": {
|
|
13
21
|
"extensions": [
|
|
@@ -24,7 +32,7 @@
|
|
|
24
32
|
"quickstartAllowFrom": true
|
|
25
33
|
},
|
|
26
34
|
"install": {
|
|
27
|
-
"npmSpec": "
|
|
35
|
+
"npmSpec": "openclaw-groupme",
|
|
28
36
|
"localPath": "extensions/groupme",
|
|
29
37
|
"defaultChoice": "npm"
|
|
30
38
|
}
|