editprompt 1.2.0 → 1.4.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.
Files changed (3) hide show
  1. package/README.md +77 -5
  2. package/dist/index.js +401 -164
  3. package/package.json +34 -28
package/package.json CHANGED
@@ -1,31 +1,33 @@
1
1
  {
2
2
  "name": "editprompt",
3
- "version": "1.2.0",
4
- "author": "eetann",
3
+ "version": "1.4.0",
5
4
  "description": "A CLI tool that lets you write prompts for CLI tools using your favorite text editor",
5
+ "keywords": [
6
+ "cli",
7
+ "clipboard",
8
+ "command-line",
9
+ "editor",
10
+ "prompt",
11
+ "text-editor",
12
+ "tmux"
13
+ ],
14
+ "homepage": "https://github.com/eetann/editprompt",
15
+ "bugs": {
16
+ "url": "https://github.com/eetann/editprompt/issues"
17
+ },
6
18
  "license": "MIT",
19
+ "author": "eetann",
7
20
  "repository": {
8
21
  "type": "git",
9
22
  "url": "https://github.com/eetann/editprompt.git"
10
23
  },
11
- "homepage": "https://github.com/eetann/editprompt",
12
- "bugs": {
13
- "url": "https://github.com/eetann/editprompt/issues"
24
+ "bin": {
25
+ "editprompt": "./dist/index.js"
14
26
  },
15
- "keywords": [
16
- "cli",
17
- "editor",
18
- "prompt",
19
- "tmux",
20
- "clipboard",
21
- "command-line",
22
- "text-editor"
27
+ "files": [
28
+ "dist"
23
29
  ],
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
30
  "type": "module",
28
- "files": ["dist"],
29
31
  "main": "./dist/index.js",
30
32
  "module": "./dist/index.js",
31
33
  "types": "./dist/index.d.ts",
@@ -33,31 +35,35 @@
33
35
  ".": "./dist/index.js",
34
36
  "./package.json": "./package.json"
35
37
  },
36
- "bin": {
37
- "editprompt": "./dist/index.js"
38
+ "publishConfig": {
39
+ "access": "public"
38
40
  },
39
41
  "scripts": {
40
42
  "build": "tsdown",
41
43
  "dev": "tsdown --watch",
42
- "lint": "biome check",
43
- "format": "biome format --write",
44
+ "lint": "oxlint --type-aware && oxfmt --check",
45
+ "lint:fix": "oxlint --type-aware --fix && oxfmt",
46
+ "format": "oxfmt --write .",
44
47
  "typecheck": "tsgo --noEmit",
45
48
  "release": "bun run lint && bun run typecheck && bun run test && bun run build && bumpp",
46
49
  "test": "bun test",
47
50
  "test:watch": "bun test --watch"
48
51
  },
52
+ "dependencies": {
53
+ "@logtape/logtape": "^2.0.2",
54
+ "clipboardy": "^4.0.0",
55
+ "conf": "^15.0.2",
56
+ "gunshi": "^0.29.2"
57
+ },
49
58
  "devDependencies": {
50
- "@biomejs/biome": "1.9.4",
51
59
  "@types/bun": "^1.3.2",
52
60
  "@types/node": "^24.10.1",
53
61
  "@typescript/native-preview": "^7.0.0-dev.20251119.1",
54
62
  "bumpp": "^10.3.1",
55
- "tsdown": "latest"
56
- },
57
- "dependencies": {
58
- "clipboardy": "^4.0.0",
59
- "conf": "^15.0.2",
60
- "gunshi": "v0.27.0-beta.3"
63
+ "oxfmt": "^0.35.0",
64
+ "oxlint": "^1.50.0",
65
+ "oxlint-tsgolint": "^0.15.0",
66
+ "tsdown": "^0.20.3"
61
67
  },
62
68
  "peerDependencies": {
63
69
  "typescript": "^5.8.3"