autho 0.0.11 → 0.0.13

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/build/bin.js +2286 -2181
  2. package/package.json +14 -14
package/package.json CHANGED
@@ -1,24 +1,11 @@
1
1
  {
2
2
  "name": "autho",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "main": "build/bin.js",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "autho": "build/bin.js"
8
8
  },
9
- "scripts": {
10
- "format": "prettier --check .",
11
- "format:write": "prettier --write .",
12
- "lint": "eslint .",
13
- "lint:fix": "eslint --fix .",
14
- "build": "esbuild packages/cli/bin.js --bundle --platform=node --target=node18 --outdir=build",
15
- "pkg": "npm run pkg:linux && npm run pkg:macos && npm run pkg:win",
16
- "pkg:macos-arm64": "pkg build/bin.js --output dist/autho --target node18-macos-arm64",
17
- "pkg:macos": "pkg build/bin.js --output dist/autho-macos --target node18-macos-x64",
18
- "pkg:linux": "pkg build/bin.js --output dist/autho-linux --target node18-linux-x64",
19
- "pkg:win": "pkg build/bin.js --output dist/autho-win --target node18-win-x64 --win portable",
20
- "release": "gh release create v0.0.10 './dist/autho*' --title 'v0.0.10' --generate-notes --prerelease"
21
- },
22
9
  "keywords": [
23
10
  "secrets",
24
11
  "otp"
@@ -49,5 +36,18 @@
49
36
  "node18-macos-x64"
50
37
  ],
51
38
  "outputPath": "dist"
39
+ },
40
+ "scripts": {
41
+ "format": "prettier --check .",
42
+ "format:write": "prettier --write .",
43
+ "lint": "eslint .",
44
+ "lint:fix": "eslint --fix .",
45
+ "build": "esbuild packages/cli/bin.js --bundle --platform=node --target=node18 --outdir=build",
46
+ "pkg": "npm run pkg:linux && npm run pkg:macos && npm run pkg:win",
47
+ "pkg:macos-arm64": "pkg build/bin.js --output dist/autho --target node18-macos-arm64",
48
+ "pkg:macos": "pkg build/bin.js --output dist/autho-macos --target node18-macos-x64",
49
+ "pkg:linux": "pkg build/bin.js --output dist/autho-linux --target node18-linux-x64",
50
+ "pkg:win": "pkg build/bin.js --output dist/autho-win --target node18-win-x64 --win portable",
51
+ "release": "gh release create v0.0.10 './dist/autho*' --title 'v0.0.10' --generate-notes --prerelease"
52
52
  }
53
53
  }