@flowscripter/example-plugin 1.0.5 → 1.0.7
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.
|
@@ -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
|
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.
|
|
8
|
-
"@flowscripter/example-plugin-api": "^1.0.
|
|
7
|
+
"@flowscripter/dynamic-plugin-framework": "^1.3.15",
|
|
8
|
+
"@flowscripter/example-plugin-api": "^1.0.7",
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@types/bun": "^1.2.
|
|
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.
|
|
19
|
+
"@flowscripter/dynamic-plugin-framework": ["@flowscripter/dynamic-plugin-framework@1.3.15", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-OhFb2IYNajJK3zeXs+BSCqxL7xr4K6AUcUYA67djsZTxDUekJ9Y+BzyfIPXO7qQRAoJpl/5utCJTmFBE5xVz5w=="],
|
|
20
20
|
|
|
21
|
-
"@flowscripter/example-plugin-api": ["@flowscripter/example-plugin-api@1.0.
|
|
21
|
+
"@flowscripter/example-plugin-api": ["@flowscripter/example-plugin-api@1.0.7", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-BPw88SQB35kzN8pU48wi9fHH0NRJfig/jtBaMWw0Orys7HGi4r0lwShJ+DBZ9XlpTKSQcMJsBnPKQE4OQX1DXw=="],
|
|
22
22
|
|
|
23
|
-
"@types/bun": ["@types/bun@1.2.
|
|
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.
|
|
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.
|
|
20
|
+
"version": "1.0.7",
|
|
6
21
|
"publishConfig": {
|
|
7
22
|
"access": "public"
|
|
8
23
|
},
|
|
9
24
|
"devDependencies": {
|
|
10
|
-
"@types/bun": "^1.2.
|
|
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.
|
|
17
|
-
"@flowscripter/example-plugin-api": "^1.0.
|
|
31
|
+
"@flowscripter/dynamic-plugin-framework": "^1.3.15",
|
|
32
|
+
"@flowscripter/example-plugin-api": "^1.0.7"
|
|
18
33
|
}
|
|
19
34
|
}
|