@flowscripter/example-plugin 1.0.4 → 1.0.6

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.
Files changed (2) hide show
  1. package/bun.lock +7 -7
  2. package/package.json +19 -4
package/bun.lock CHANGED
@@ -4,11 +4,11 @@
4
4
  "": {
5
5
  "name": "@flowscripter/example-plugin",
6
6
  "dependencies": {
7
- "@flowscripter/dynamic-plugin-framework": "^1.3.12",
8
- "@flowscripter/example-plugin-api": "^1.0.4",
7
+ "@flowscripter/dynamic-plugin-framework": "^1.3.14",
8
+ "@flowscripter/example-plugin-api": "^1.0.6",
9
9
  },
10
10
  "devDependencies": {
11
- "@types/bun": "^1.2.4",
11
+ "@types/bun": "^1.2.5",
12
12
  },
13
13
  "peerDependencies": {
14
14
  "typescript": "^5.8.2",
@@ -16,17 +16,17 @@
16
16
  },
17
17
  },
18
18
  "packages": {
19
- "@flowscripter/dynamic-plugin-framework": ["@flowscripter/dynamic-plugin-framework@1.3.12", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-Mw3Pw45KLeepr01MPJISxjVN5zfBLMIsCv6TgJfdfoBBZ6l2NsQu7mX4XkA+ZSNmbRAH6gZdDAJU38O9UJV/cA=="],
19
+ "@flowscripter/dynamic-plugin-framework": ["@flowscripter/dynamic-plugin-framework@1.3.14", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-5ap5slnI4CcJSyZjIOu+j7a6qTAh64dYPD0BSRh7qEAlob/O2qhoYsIH72Be38FfI8jJGkC6MxCTw/JOpFYaXA=="],
20
20
 
21
- "@flowscripter/example-plugin-api": ["@flowscripter/example-plugin-api@1.0.4", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-uFggqHpcuMfhctAggDUO1YQ/3IrfkupMsRAHqcGpvc8uLfTD+tPzGL3a1FYc7kN2HM8faQwGWl9BYvTyc4+lfQ=="],
21
+ "@flowscripter/example-plugin-api": ["@flowscripter/example-plugin-api@1.0.6", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-/gXAkdUOFng2iHE6PIvQ+aoF3gL4JisiO3x5MbqneZzyDxXwFuwDsEUjTjDf5MpDMyrwYP6PtCgN61MDL/NGGQ=="],
22
22
 
23
- "@types/bun": ["@types/bun@1.2.4", "", { "dependencies": { "bun-types": "1.2.4" } }, "sha512-QtuV5OMR8/rdKJs213iwXDpfVvnskPXY/S0ZiFbsTjQZycuqPbMW8Gf/XhLfwE5njW8sxI2WjISURXPlHypMFA=="],
23
+ "@types/bun": ["@types/bun@1.2.5", "", { "dependencies": { "bun-types": "1.2.5" } }, "sha512-w2OZTzrZTVtbnJew1pdFmgV99H0/L+Pvw+z1P67HaR18MHOzYnTYOi6qzErhK8HyT+DB782ADVPPE92Xu2/Opg=="],
24
24
 
25
25
  "@types/node": ["@types/node@22.13.9", "", { "dependencies": { "undici-types": "~6.20.0" } }, "sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw=="],
26
26
 
27
27
  "@types/ws": ["@types/ws@8.5.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw=="],
28
28
 
29
- "bun-types": ["bun-types@1.2.4", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-nDPymR207ZZEoWD4AavvEaa/KZe/qlrbMSchqpQwovPZCKc7pwMoENjEtHgMKaAjJhy+x6vfqSBA1QU3bJgs0Q=="],
29
+ "bun-types": ["bun-types@1.2.5", "", { "dependencies": { "@types/node": "*", "@types/ws": "~8.5.10" } }, "sha512-3oO6LVGGRRKI4kHINx5PIdIgnLRb7l/SprhzqXapmoYkFl5m4j6EvALvbDVuuBFaamB46Ap6HCUxIXNLCGy+tg=="],
30
30
 
31
31
  "typescript": ["typescript@5.8.2", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ=="],
32
32
 
package/package.json CHANGED
@@ -1,19 +1,34 @@
1
1
  {
2
2
  "name": "@flowscripter/example-plugin",
3
+ "description": "Example plugin for the https://github.com/flowscripter/dynamic-plugin-framework",
4
+ "homepage": "https://github.com/flowscripter/example-plugin#readme",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/flowscripter/example-plugin.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.4",
20
+ "version": "1.0.6",
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"
14
29
  },
15
30
  "dependencies": {
16
- "@flowscripter/dynamic-plugin-framework": "^1.3.12",
17
- "@flowscripter/example-plugin-api": "^1.0.4"
31
+ "@flowscripter/dynamic-plugin-framework": "^1.3.14",
32
+ "@flowscripter/example-plugin-api": "^1.0.6"
18
33
  }
19
34
  }