contextloop-cli 0.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,60 @@
1
+ {
2
+ "name": "contextloop-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for ContextLoop - upload, download, and manage documents",
5
+ "type": "module",
6
+ "bin": {
7
+ "contextloop": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "scripts": {
15
+ "build": "tsup src/index.ts --format esm --dts --clean",
16
+ "dev": "tsup src/index.ts --format esm --watch",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "test:coverage": "vitest run --coverage",
20
+ "lint": "eslint src tests",
21
+ "typecheck": "tsc --noEmit",
22
+ "prepublishOnly": "pnpm run build"
23
+ },
24
+ "dependencies": {
25
+ "@napi-rs/keyring": "^1.2.0",
26
+ "chalk": "^5.3.0",
27
+ "commander": "^12.0.0",
28
+ "conf": "^12.0.0",
29
+ "glob": "^10.3.0",
30
+ "ofetch": "^1.3.0",
31
+ "open": "^10.0.0",
32
+ "ora": "^8.0.0"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^20.0.0",
36
+ "@typescript-eslint/eslint-plugin": "^7.0.0",
37
+ "@typescript-eslint/parser": "^7.0.0",
38
+ "@vitest/coverage-v8": "^1.3.0",
39
+ "eslint": "^8.57.0",
40
+ "tsup": "^8.0.0",
41
+ "typescript": "^5.4.0",
42
+ "vitest": "^1.3.0"
43
+ },
44
+ "engines": {
45
+ "node": ">=20.0.0"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/contextloop/contextloop-cli.git"
50
+ },
51
+ "keywords": [
52
+ "contextloop",
53
+ "cli",
54
+ "markdown",
55
+ "documents",
56
+ "ai-agents"
57
+ ],
58
+ "author": "ContextLoop",
59
+ "license": "MIT"
60
+ }