exocortex-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.
Files changed (3) hide show
  1. package/README.md +317 -0
  2. package/dist/index.js +277 -0
  3. package/package.json +67 -0
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "exocortex-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI tool for Exocortex knowledge management system - SPARQL queries, task management, and more",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "exocortex": "./dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md"
12
+ ],
13
+ "scripts": {
14
+ "build": "npm run build:bundle",
15
+ "build:tsc": "tsc",
16
+ "build:bundle": "node esbuild.config.mjs production",
17
+ "dev": "node esbuild.config.mjs",
18
+ "start": "node dist/index.js",
19
+ "clean": "rm -rf dist",
20
+ "test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
21
+ "prepublishOnly": "npm run clean && npm run build"
22
+ },
23
+ "keywords": [
24
+ "exocortex",
25
+ "cli",
26
+ "knowledge-management",
27
+ "task-management",
28
+ "sparql",
29
+ "obsidian",
30
+ "productivity"
31
+ ],
32
+ "author": "A. Kitelev",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/kitelev/exocortex-obsidian-plugin.git",
37
+ "directory": "packages/cli"
38
+ },
39
+ "homepage": "https://github.com/kitelev/exocortex-obsidian-plugin/tree/main/packages/cli#readme",
40
+ "bugs": {
41
+ "url": "https://github.com/kitelev/exocortex-obsidian-plugin/issues"
42
+ },
43
+ "engines": {
44
+ "node": ">=18.0.0"
45
+ },
46
+ "dependencies": {
47
+ "chalk": "^5.3.0",
48
+ "commander": "^14.0.2",
49
+ "fs-extra": "^11.0.0",
50
+ "glob": "^10.3.0",
51
+ "js-yaml": "^4.1.0",
52
+ "ora": "^9.0.0"
53
+ },
54
+ "devDependencies": {
55
+ "@exocortex/core": "file:../core",
56
+ "@types/fs-extra": "^11.0.0",
57
+ "@types/jest": "^30.0.0",
58
+ "@types/js-yaml": "^4.0.0",
59
+ "@types/node": "^20.19.24",
60
+ "esbuild": "^0.25.12",
61
+ "jest": "^30.2.0",
62
+ "reflect-metadata": "^0.2.2",
63
+ "ts-jest": "^29.4.5",
64
+ "tsyringe": "^4.8.0",
65
+ "typescript": "^5.9.3"
66
+ }
67
+ }