@flowscripter/template-bun-executable 1.1.19 → 1.1.21

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/template-bun-executable",
6
6
  "dependencies": {
7
- "@flowscripter/template-bun-library": "1.0.15",
8
- "@flowscripter/template-bun-rust-library": "1.0.22",
7
+ "@flowscripter/template-bun-library": "1.0.17",
8
+ "@flowscripter/template-bun-rust-library": "1.0.24",
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/template-bun-library": ["@flowscripter/template-bun-library@1.0.15", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-81Xz6XCYwXgagBKxmVotsao+3SRhT5Egdh+zo8z5RAGKjQHoyav/ACiy+vnvZEsQaAdM8Qg9b9eEW5cLIClaaw=="],
19
+ "@flowscripter/template-bun-library": ["@flowscripter/template-bun-library@1.0.17", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-0cIwu25eX4m44iDZcWy3yoFf5SQakJjJh8fbSg7rYBgwznt01Fa2+li7Bne0deJJ5h3bwCNK9jHz9EzcCOJmVg=="],
20
20
 
21
- "@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.22", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-dFcAzMiCoOwMpCoP+fRjaRB1xncYme1GY8aBGT5XtcQJu95xingPGdnRBb2wUXBpW9dLf0pnFLRtcM/IJWWyBA=="],
21
+ "@flowscripter/template-bun-rust-library": ["@flowscripter/template-bun-rust-library@1.0.24", "", { "peerDependencies": { "typescript": "^5.8.2" } }, "sha512-qWK7ZbYFfARyAbETrPYzItR3beF1MeM5goGG+iKQfAgNzpeicphFsxvTQj/3gNRcZOR+yj7g/hqN7MVUdZ5d2g=="],
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.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.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/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.19",
20
+ "version": "1.1.21",
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/template-bun-library": "1.0.15",
17
- "@flowscripter/template-bun-rust-library": "1.0.22"
31
+ "@flowscripter/template-bun-library": "1.0.17",
32
+ "@flowscripter/template-bun-rust-library": "1.0.24"
18
33
  }
19
34
  }