electrobun 0.0.19-beta.1 → 0.0.19-beta.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.
- package/bin/electrobun +0 -0
- package/package.json +14 -9
- package/src/cli/bun.lockb +0 -0
- package/src/cli/index.ts +1527 -0
- package/src/cli/package-lock.json +93 -0
- package/src/cli/package.json +14 -0
- package/scripts/postinstall.js +0 -165
package/bin/electrobun
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electrobun",
|
|
3
|
-
"version": "0.0.19-beta.
|
|
3
|
+
"version": "0.0.19-beta.7",
|
|
4
4
|
"description": "Build ultra fast, tiny, and cross-platform desktop apps with Typescript.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Blackboard Technologies Inc.",
|
|
7
|
-
"keywords": [
|
|
7
|
+
"keywords": [
|
|
8
|
+
"bun",
|
|
9
|
+
"desktop",
|
|
10
|
+
"app",
|
|
11
|
+
"cross-platform",
|
|
12
|
+
"typescript"
|
|
13
|
+
],
|
|
8
14
|
"exports": {
|
|
9
15
|
".": "./dist/api/bun/index.ts",
|
|
10
16
|
"./bun": "./dist/api/bun/index.ts",
|
|
@@ -12,7 +18,7 @@
|
|
|
12
18
|
},
|
|
13
19
|
"type": "module",
|
|
14
20
|
"bin": {
|
|
15
|
-
"electrobun": "
|
|
21
|
+
"electrobun": "./bin/electrobun"
|
|
16
22
|
},
|
|
17
23
|
"homepage": "https://electrobun.dev",
|
|
18
24
|
"repository": {
|
|
@@ -20,7 +26,7 @@
|
|
|
20
26
|
"url": "git+https://github.com/blackboardsh/electrobun.git"
|
|
21
27
|
},
|
|
22
28
|
"scripts": {
|
|
23
|
-
"postinstall": "
|
|
29
|
+
"postinstall": "mkdir -p bin && bun build src/cli/index.ts --compile --outfile bin/electrobun",
|
|
24
30
|
"start": "bun src/bun/index.ts",
|
|
25
31
|
"check-zig-version": "vendors/zig/zig version",
|
|
26
32
|
"build:dev": "bun build.ts",
|
|
@@ -36,12 +42,11 @@
|
|
|
36
42
|
"npm:publish:beta": "bun build:release && npm publish --tag beta",
|
|
37
43
|
"npm:version:beta": "npm version prerelease --preid=beta"
|
|
38
44
|
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@types/bun": "1.1.9"
|
|
41
|
-
},
|
|
42
45
|
"dependencies": {
|
|
43
46
|
"@oneidentity/zstd-js": "^1.0.3",
|
|
44
|
-
"
|
|
47
|
+
"@types/bun": "1.1.9",
|
|
48
|
+
"electrobun": "^0.0.19-beta.6",
|
|
49
|
+
"rpc-anywhere": "1.5.0",
|
|
45
50
|
"tar": "^6.2.1"
|
|
46
51
|
}
|
|
47
|
-
}
|
|
52
|
+
}
|
|
Binary file
|