@flowscripter/template-bun-executable 1.1.20 → 1.1.22
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-executable
|
|
|
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-executable:
|
|
7
13
|
uses: flowscripter/.github/.github/workflows/release-bun-executable.yml@v1
|
package/bun.lock
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
"": {
|
|
5
5
|
"name": "@flowscripter/template-bun-executable",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@flowscripter/template-bun-library": "1.0.
|
|
8
|
-
"@flowscripter/template-bun-rust-library": "1.0.
|
|
7
|
+
"@flowscripter/template-bun-library": "1.0.18",
|
|
8
|
+
"@flowscripter/template-bun-rust-library": "1.0.25",
|
|
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/template-bun-library": ["@flowscripter/template-bun-library@1.0.
|
|
19
|
+
"@flowscripter/template-bun-library": ["@flowscripter/template-bun-library@1.0.18", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-jw6+W2DATSOAo4kmzrTBe1ZSXmn67/HXjAzpAas/92q1fBLiKfqmmGE/nW4NpA//ipP1849EHxIfp4yd5wMgig=="],
|
|
20
20
|
|
|
21
|
-
"@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.
|
|
21
|
+
"@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.25", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-3uuEt3r9HJwdbQitD/fqWin3VCF27nYTvNNuvhq+DWSjIchkcIpOgNaGNdTgMTgwrs0KjXT5OyeL0k6WThoG3A=="],
|
|
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.2", "", { "dependencies": { "undici-types": "~6.20.0" } }, "sha512-Z+r8y3XL9ZpI2EY52YYygAFmo2/oWfNSj4BCpAXE2McAexDk8VcnBMGC9Djn9gTKt4d2T/hhXqmPzo4hfIXtTg=="],
|
|
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/template-bun-executable",
|
|
3
|
+
"description": "Project template for a cross-platform Bun executable with ffi native library and Bun library dependencies",
|
|
4
|
+
"homepage": "https://github.com/flowscripter/template-bun-executable#readme",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/flowscripter/template-bun-executable.git"
|
|
8
|
+
},
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"bun",
|
|
12
|
+
"example",
|
|
13
|
+
"template",
|
|
14
|
+
"cli",
|
|
15
|
+
"executable",
|
|
16
|
+
"ffi"
|
|
17
|
+
],
|
|
3
18
|
"module": "index.ts",
|
|
4
19
|
"type": "module",
|
|
5
|
-
"version": "1.1.
|
|
20
|
+
"version": "1.1.22",
|
|
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/template-bun-library": "1.0.
|
|
17
|
-
"@flowscripter/template-bun-rust-library": "1.0.
|
|
31
|
+
"@flowscripter/template-bun-library": "1.0.18",
|
|
32
|
+
"@flowscripter/template-bun-rust-library": "1.0.25"
|
|
18
33
|
}
|
|
19
34
|
}
|