@fluxvita/jovida-cli 0.0.1

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,35 @@
1
+ {
2
+ "name": "@fluxvita/jovida-cli",
3
+ "version": "0.0.1",
4
+ "description": "Jovida Daily CLI — capture and manage your todos from the command line and AI agents",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "jovida": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "SKILL.md"
12
+ ],
13
+ "scripts": {
14
+ "dev": "tsx src/cli.ts",
15
+ "build": "tsc -p tsconfig.json",
16
+ "typecheck": "tsc --noEmit -p tsconfig.json",
17
+ "start": "node dist/cli.js",
18
+ "prepublishOnly": "npm run build"
19
+ },
20
+ "publishConfig": {
21
+ "access": "public",
22
+ "registry": "https://registry.npmjs.org"
23
+ },
24
+ "dependencies": {
25
+ "ulid": "^2.3.0"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^22.10.0",
29
+ "tsx": "^4.19.0",
30
+ "typescript": "^5.7.0"
31
+ },
32
+ "engines": {
33
+ "node": ">=18"
34
+ }
35
+ }