ivorleaf 1.1.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 ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "ivorleaf",
3
+ "version": "1.1.0",
4
+ "description": "Cross-platform terminal client for the Ivorleaf API",
5
+ "type": "module",
6
+ "license": "UNLICENSED",
7
+ "bin": {
8
+ "ivorleaf": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist/**/*.js",
12
+ "README.md",
13
+ "LICENSE.md"
14
+ ],
15
+ "scripts": {
16
+ "dev": "tsx src/index.ts",
17
+ "build": "tsc -p tsconfig.json",
18
+ "start": "node dist/index.js",
19
+ "test": "node --import tsx --test test/**/*.test.ts",
20
+ "typecheck": "tsc -p tsconfig.json --noEmit",
21
+ "prepublishOnly": "npm run typecheck && npm test && npm run build"
22
+ },
23
+ "engines": {
24
+ "node": ">=20"
25
+ },
26
+ "dependencies": {
27
+ "@inquirer/prompts": "^7.4.1",
28
+ "chalk": "^5.4.1",
29
+ "commander": "^13.1.0",
30
+ "marked": "^15.0.7",
31
+ "marked-terminal": "^7.3.0"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "^22.13.10",
35
+ "tsx": "^4.19.3",
36
+ "typescript": "^5.8.2"
37
+ }
38
+ }