sylo-codesys 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.
- package/.github/workflows/publish.yml +30 -0
- package/package.json +27 -8
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Publishes to npm via Trusted Publishing (OIDC — no tokens).
|
|
2
|
+
# npm side: package Settings -> Trusted publishing -> GitHub Actions ->
|
|
3
|
+
# user Yeti-Trix, this repo, workflow filename publish.yml.
|
|
4
|
+
# Release flow: bump package.json version -> commit -> tag vX.Y.Z -> push tag.
|
|
5
|
+
# Provenance attestations are generated automatically (public repo + package).
|
|
6
|
+
name: Publish Package
|
|
7
|
+
|
|
8
|
+
on:
|
|
9
|
+
push:
|
|
10
|
+
tags:
|
|
11
|
+
- 'v*'
|
|
12
|
+
workflow_dispatch:
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
id-token: write
|
|
16
|
+
contents: read
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
publish:
|
|
20
|
+
runs-on: ubuntu-latest
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v6
|
|
23
|
+
- uses: actions/setup-node@v6
|
|
24
|
+
with:
|
|
25
|
+
node-version: '24'
|
|
26
|
+
registry-url: 'https://registry.npmjs.org'
|
|
27
|
+
package-manager-cache: false
|
|
28
|
+
- run: npm install
|
|
29
|
+
- run: npm run build --if-present
|
|
30
|
+
- run: npm publish
|
package/package.json
CHANGED
|
@@ -1,17 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sylo-codesys",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Drive a live, open CODESYS V3.5 project from chat via the codesys-mcp-sp21-plus MCP server, bridged through pi-mcp-adapter. Skill + setup/diagnostic tool. No host MCP client.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"pi-package"
|
|
8
8
|
],
|
|
9
|
-
"files": [
|
|
10
|
-
"extensions",
|
|
11
|
-
"skills",
|
|
12
|
-
"README.md",
|
|
13
|
-
"LICENSE"
|
|
14
|
-
],
|
|
15
9
|
"pi": {
|
|
16
10
|
"extensions": [
|
|
17
11
|
"./extensions/index.ts"
|
|
@@ -26,5 +20,30 @@
|
|
|
26
20
|
"dependencies": {
|
|
27
21
|
"typebox": "^1.1.24"
|
|
28
22
|
},
|
|
29
|
-
"license": "MIT"
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"gitHead": "f05700bce9bf8ef8574894f24a8a3fa71da11d61",
|
|
25
|
+
"dist": {
|
|
26
|
+
"integrity": "sha512-omhxtmOKvGc0abQCJcMPQb9+fyEyKRO8ymZOauKk7cM2H8SufVPeINGX49H/6UdpZlu13j7a5fQrhjV5pmT+Vg==",
|
|
27
|
+
"shasum": "9b7fb591a3b51cefda2cb638db64f60f7fbadde4",
|
|
28
|
+
"tarball": "https://registry.npmjs.org/sylo-codesys/-/sylo-codesys-0.1.0.tgz",
|
|
29
|
+
"fileCount": 5,
|
|
30
|
+
"unpackedSize": 32571,
|
|
31
|
+
"signatures": [
|
|
32
|
+
{
|
|
33
|
+
"keyid": "SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U",
|
|
34
|
+
"sig": "MEUCIQC1PkMGhx+UrEHeBq26XSStd2/buAFDr0wKu1AX9SDHAwIgXTuKJ4LTbBuDZDXEwAzizBBugHpF5CZ+sCNMMfaqfns="
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
},
|
|
38
|
+
"directories": {},
|
|
39
|
+
"maintainers": [
|
|
40
|
+
{
|
|
41
|
+
"name": "yeti-trix",
|
|
42
|
+
"email": "spencer.current@gmail.com"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"repository": {
|
|
46
|
+
"type": "git",
|
|
47
|
+
"url": "git+https://github.com/Yeti-Trix/sylo-codesys.git"
|
|
48
|
+
}
|
|
30
49
|
}
|