cliedit 0.1.0 → 0.1.2

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,44 +1,44 @@
1
- {
2
- "name": "cliedit",
3
- "version": "0.1.0",
4
- "description": "A lightweight, raw-mode terminal editor utility for Node.js CLI applications, with line wrapping and undo/redo support.",
5
- "repository": "https://github.com/CodeTease/cliedit",
6
- "type": "module",
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "import": "./dist/index.js",
12
- "types": "./dist/index.d.ts"
13
- }
14
- },
15
- "files": [
16
- "dist",
17
- "LICENSE",
18
- "README.md"
19
- ],
20
- "scripts": {
21
- "build": "tsc",
22
- "prepublishOnly": "npm run build",
23
- "demo": "npm run build && cross-env NODE_ENV=development node dist/demo.js",
24
- "test": "echo \"Error: no test specified\" && exit 1"
25
- },
26
- "keywords": [
27
- "cli",
28
- "editor",
29
- "terminal",
30
- "tui",
31
- "raw-mode",
32
- "typescript"
33
- ],
34
- "author": "CodeTease",
35
- "license": "MIT",
36
- "devDependencies": {
37
- "@types/node": "^20.12.12",
38
- "cross-env": "^7.0.3",
39
- "typescript": "^5.4.5"
40
- },
41
- "dependencies": {
42
- "keypress": "^0.2.1"
43
- }
1
+ {
2
+ "name": "cliedit",
3
+ "version": "0.1.2",
4
+ "description": "A lightweight, raw-mode terminal editor utility for Node.js CLI applications, with line wrapping and undo/redo support.",
5
+ "repository": "https://github.com/CodeTease/cliedit",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": "./dist/index.js",
12
+ "types": "./dist/index.d.ts"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "LICENSE",
18
+ "README.md",
19
+ "ACKNOWLEDGEMENTS.md"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "prepublishOnly": "npm run build",
24
+ "demo": "npm run build && cross-env NODE_ENV=development node dist/demo.js",
25
+ "test": "echo \"Error: no test specified\" && exit 1"
26
+ },
27
+ "keywords": [
28
+ "cli",
29
+ "editor",
30
+ "terminal",
31
+ "tui",
32
+ "raw-mode",
33
+ "typescript"
34
+ ],
35
+ "author": "CodeTease",
36
+ "license": "MIT",
37
+ "devDependencies": {
38
+ "@types/node": "^20.12.12",
39
+ "cross-env": "^7.0.3",
40
+ "typescript": "^5.4.5"
41
+ },
42
+ "dependencies": {
43
+ }
44
44
  }