openwork-server 0.1.0 → 0.1.1
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/README.md +2 -0
- package/dist/bin/openwork-server +0 -0
- package/dist/cli.js +0 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
Binary file
|
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openwork-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Filesystem-backed API for OpenWork remote clients",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"openwork-server": "dist/
|
|
7
|
+
"openwork-server": "dist/bin/openwork-server"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"dev": "bun src/cli.ts",
|
|
11
11
|
"build": "tsc -p tsconfig.json",
|
|
12
|
-
"build:bin": "bun
|
|
12
|
+
"build:bin": "bun build --compile src/cli.ts --outfile dist/bin/openwork-server",
|
|
13
13
|
"build:bin:all": "bun ./script/build.ts --outdir dist/bin --target bun-darwin-arm64 --target bun-darwin-x64 --target bun-linux-x64 --target bun-windows-x64",
|
|
14
14
|
"start": "bun dist/cli.js",
|
|
15
|
-
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
15
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
16
|
+
"prepublishOnly": "pnpm build:bin"
|
|
16
17
|
},
|
|
17
18
|
"files": [
|
|
18
19
|
"dist",
|