@rewrlution/papyrus-cli 0.0.2 → 0.0.3
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/cli.js +0 -0
- package/package.json +10 -11
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rewrlution/papyrus-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "AI-powered developer journaling CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"journal",
|
|
@@ -24,15 +24,7 @@
|
|
|
24
24
|
"README.md",
|
|
25
25
|
"LICENSE"
|
|
26
26
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "rimraf dist tsconfig.tsbuildinfo && tsc --build",
|
|
29
|
-
"dev": "tsx watch src/cli.tsx",
|
|
30
|
-
"start": "node dist/cli.js",
|
|
31
|
-
"test": "vitest run",
|
|
32
|
-
"prepublishOnly": "npm run build && npm run test"
|
|
33
|
-
},
|
|
34
27
|
"dependencies": {
|
|
35
|
-
"@rewrlution/papyrus-shared": "workspace:*",
|
|
36
28
|
"axios": "^1.13.2",
|
|
37
29
|
"chalk": "^5.6.2",
|
|
38
30
|
"commander": "^14.0.2",
|
|
@@ -43,11 +35,18 @@
|
|
|
43
35
|
"ink-spinner": "^5.0.0",
|
|
44
36
|
"ink-text-input": "^6.0.0",
|
|
45
37
|
"jwt-decode": "^4.0.0",
|
|
46
|
-
"react": "^19.2.3"
|
|
38
|
+
"react": "^19.2.3",
|
|
39
|
+
"@rewrlution/papyrus-shared": "0.0.1"
|
|
47
40
|
},
|
|
48
41
|
"devDependencies": {
|
|
49
42
|
"@types/node": "^25.0.3",
|
|
50
43
|
"@types/react": "^19.2.7",
|
|
51
44
|
"tsx": "^4.21.0"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "rimraf dist tsconfig.tsbuildinfo && tsc --build",
|
|
48
|
+
"dev": "tsx watch src/cli.tsx",
|
|
49
|
+
"start": "node dist/cli.js",
|
|
50
|
+
"test": "vitest run"
|
|
52
51
|
}
|
|
53
|
-
}
|
|
52
|
+
}
|