sequoia-cli 0.4.0 → 0.5.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sequoia-cli",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "sequoia": "dist/index.js"
@@ -17,11 +17,13 @@
17
17
  "lint": "biome lint --write",
18
18
  "format": "biome format --write",
19
19
  "build": "bun build src/index.ts --target node --outdir dist && mkdir -p dist/components && cp src/components/*.js dist/components/",
20
+ "test": "bun test",
20
21
  "dev": "bun run build && bun link",
21
22
  "deploy": "bun run build && bun publish"
22
23
  },
23
24
  "devDependencies": {
24
25
  "@biomejs/biome": "^2.3.13",
26
+ "@types/js-yaml": "^4.0.9",
25
27
  "@types/mime-types": "^3.0.1",
26
28
  "@types/node": "^20"
27
29
  },
@@ -34,8 +36,10 @@
34
36
  "@clack/prompts": "^1.0.0",
35
37
  "cmd-ts": "^0.14.3",
36
38
  "glob": "^13.0.0",
39
+ "js-yaml": "^4.1.1",
37
40
  "mime-types": "^2.1.35",
38
41
  "minimatch": "^10.1.1",
39
- "open": "^11.0.0"
42
+ "open": "^11.0.0",
43
+ "smol-toml": "^1.6.0"
40
44
  }
41
45
  }