create-wisp 1.0.3 → 1.0.5

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/dist/index.js +1 -1
  2. package/package.json +5 -9
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  // @bun
3
3
  import { createRequire } from "node:module";
4
4
  var __create = Object.create;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-wisp",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "CLI for wisp.place - deploy static sites to the AT Protocol",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -13,10 +13,10 @@
13
13
  ],
14
14
  "scripts": {
15
15
  "dev": "bun run index.ts",
16
- "build": "bun build ./index.ts --outdir ./dist --target node --sourcemap=linked",
16
+ "build": "bun build ./index.ts --outdir ./dist --target node --sourcemap=linked && sed -i '' '1s|#!/usr/bin/env bun|#!/usr/bin/env node|' ./dist/index.js",
17
17
  "typecheck": "tsc --noEmit"
18
18
  },
19
- "dependencies": {
19
+ "devDependencies": {
20
20
  "@atproto/api": "^0.18.17",
21
21
  "@atproto/identity": "^0.4.10",
22
22
  "@atproto/lex-cbor": "^0.0.9",
@@ -37,14 +37,10 @@
37
37
  "ignore": "^7.0.5",
38
38
  "mime-types": "^3.0.2",
39
39
  "open": "^11.0.0",
40
- "picocolors": "^1.1.1"
41
- },
42
- "devDependencies": {
40
+ "picocolors": "^1.1.1",
43
41
  "@types/bun": "latest",
44
42
  "@types/mime-types": "^3.0.1",
45
- "@types/node": "^22.0.0"
46
- },
47
- "peerDependencies": {
43
+ "@types/node": "^22.0.0",
48
44
  "typescript": "^5"
49
45
  }
50
46
  }