lifeos-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/dist/lifeos.mjs +3972 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "lifeos-cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "LifeOS CLI — manage your life operating system from the terminal",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"lifeos",
|
|
9
|
+
"cli",
|
|
10
|
+
"productivity",
|
|
11
|
+
"tasks",
|
|
12
|
+
"goals",
|
|
13
|
+
"journal"
|
|
14
|
+
],
|
|
15
|
+
"bin": {
|
|
16
|
+
"lifeos": "./dist/lifeos.mjs"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/lifeos.mjs"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "bun run scripts/build.ts",
|
|
23
|
+
"dev": "bun run src/index.ts",
|
|
24
|
+
"check": "tsc --noEmit",
|
|
25
|
+
"start": "node dist/lifeos.mjs"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"commander": "^13.0.0",
|
|
29
|
+
"chalk": "^5.4.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@lifeos/shared": "workspace:*",
|
|
33
|
+
"@types/node": "^22.0.0",
|
|
34
|
+
"tsx": "^4.19.0",
|
|
35
|
+
"typescript": "^5.7.0"
|
|
36
|
+
}
|
|
37
|
+
}
|