remanso-cli 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.
Files changed (2) hide show
  1. package/dist/index.js +104671 -0
  2. package/package.json +38 -0
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "remanso-cli",
3
+ "version": "0.1.1",
4
+ "type": "module",
5
+ "bin": {
6
+ "remanso": "dist/index.js"
7
+ },
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "main": "./dist/index.js",
13
+ "exports": {
14
+ ".": "./dist/index.js"
15
+ },
16
+ "scripts": {
17
+ "lint": "biome lint --write src",
18
+ "format": "biome format --write src",
19
+ "build": "bun build src/index.ts --target node --outdir dist",
20
+ "test": "bun test",
21
+ "dev": "bun run build && bun link",
22
+ "deploy": "bun run build && bun run release-it"
23
+ },
24
+ "dependencies": {
25
+ "@atproto/api": "^0.18.17",
26
+ "@clack/prompts": "^1.0.0",
27
+ "cmd-ts": "^0.14.3",
28
+ "glob": "^13.0.0",
29
+ "mime-types": "^2.1.35",
30
+ "minimatch": "^10.1.1"
31
+ },
32
+ "devDependencies": {
33
+ "@biomejs/biome": "^2.3.13",
34
+ "@types/mime-types": "^3.0.1",
35
+ "@types/node": "^20",
36
+ "release-it": "^19.2.4"
37
+ }
38
+ }