@flowscripter/example-plugin-api 1.0.6 → 1.0.8

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.
@@ -3,6 +3,9 @@ on:
3
3
  workflow_dispatch:
4
4
  schedule:
5
5
  - cron: "0 0 * * *"
6
+ permissions:
7
+ contents: read
8
+ pull-requests: write
6
9
  jobs:
7
10
  call-check-bun-dependencies:
8
11
  uses: flowscripter/.github/.github/workflows/check-bun-dependencies.yml@v1
@@ -5,6 +5,8 @@ on:
5
5
  - opened
6
6
  - edited
7
7
  - synchronize
8
+ permissions:
9
+ contents: read
8
10
  jobs:
9
11
  call-lint-pr-message:
10
12
  uses: flowscripter/.github/.github/workflows/lint-pr-message.yml@v1
@@ -2,6 +2,12 @@ name: release-bun-library
2
2
  on:
3
3
  push:
4
4
  branches: [main]
5
+ permissions:
6
+ contents: write
7
+ issues: write
8
+ pull-requests: write
9
+ id-token: write
10
+ pages: write
5
11
  jobs:
6
12
  call-release-bun-library:
7
13
  uses: flowscripter/.github/.github/workflows/release-bun-library.yml@v1
@@ -2,6 +2,8 @@ name: validate-bun-library-pr
2
2
  on:
3
3
  pull_request:
4
4
  branches: [main]
5
+ permissions:
6
+ contents: read
5
7
  jobs:
6
8
  call-validate-bun-library-pr:
7
9
  uses: flowscripter/.github/.github/workflows/validate-bun-library-pr.yml@v1
package/bun.lock CHANGED
@@ -4,7 +4,7 @@
4
4
  "": {
5
5
  "name": "@flowscripter/example-plugin-api",
6
6
  "devDependencies": {
7
- "@types/bun": "^1.2.4",
7
+ "@types/bun": "^1.2.5",
8
8
  },
9
9
  "peerDependencies": {
10
10
  "typescript": "^5.8.2",
@@ -12,13 +12,13 @@
12
12
  },
13
13
  },
14
14
  "packages": {
15
- "@types/bun": ["@types/bun@1.2.4", "", { "dependencies": { "bun-types": "1.2.4" } }, "sha512-QtuV5OMR8/rdKJs213iwXDpfVvnskPXY/S0ZiFbsTjQZycuqPbMW8Gf/XhLfwE5njW8sxI2WjISURXPlHypMFA=="],
15
+ "@types/bun": ["@types/bun@1.2.5", "", { "dependencies": { "bun-types": "1.2.5" } }, "sha512-w2OZTzrZTVtbnJew1pdFmgV99H0/L+Pvw+z1P67HaR18MHOzYnTYOi6qzErhK8HyT+DB782ADVPPE92Xu2/Opg=="],
16
16
 
17
17
  "@types/node": ["@types/node@22.13.9", "", { "dependencies": { "undici-types": "~6.20.0" } }, "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw=="],
18
18
 
19
19
  "@types/ws": ["@types/ws@8.5.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw=="],
20
20
 
21
- "bun-types": ["bun-types@1.2.4", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-nDPymR207ZZEoWD4AavvEaa/KZe/qlrbMSchqpQwovPZCKc7pwMoENjEtHgMKaAjJhy+x6vfqSBA1QU3bJgs0Q=="],
21
+ "bun-types": ["bun-types@1.2.5", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-3oO6LVGGRRKI4kHINx5PIdIgnLRb7l/SprhzqXapmoYkFl5m4j6EvALvbDVuuBFaamB46Ap6HCUxIXNLCGy+tg=="],
22
22
 
23
23
  "typescript": ["typescript@5.8.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ=="],
24
24
 
package/package.json CHANGED
@@ -1,13 +1,28 @@
1
1
  {
2
2
  "name": "@flowscripter/example-plugin-api",
3
+ "description": "Example plugin API for the https://github.com/flowscripter/dynamic-plugin-framework",
4
+ "homepage": "https://github.com/flowscripter/example-plugin-api#readme",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/flowscripter/example-plugin-api.git"
8
+ },
9
+ "license": "MIT",
10
+ "keywords": [
11
+ "bun",
12
+ "example",
13
+ "plugin",
14
+ "framework",
15
+ "dynamic",
16
+ "import"
17
+ ],
3
18
  "module": "index.ts",
4
19
  "type": "module",
5
- "version": "1.0.6",
20
+ "version": "1.0.8",
6
21
  "publishConfig": {
7
22
  "access": "public"
8
23
  },
9
24
  "devDependencies": {
10
- "@types/bun": "^1.2.4"
25
+ "@types/bun": "^1.2.5"
11
26
  },
12
27
  "peerDependencies": {
13
28
  "typescript": "^5.8.2"