claude-ps 0.1.0 → 0.1.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 +11 -4
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-ps",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TUI application for viewing and managing Claude Code processes",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"claude-ps": "dist/index.js"
|
|
9
9
|
},
|
|
10
|
-
"files": [
|
|
10
|
+
"files": [
|
|
11
|
+
"dist"
|
|
12
|
+
],
|
|
11
13
|
"scripts": {
|
|
12
14
|
"dev": "tsx src/index.tsx",
|
|
13
15
|
"build": "tsup",
|
|
@@ -17,7 +19,12 @@
|
|
|
17
19
|
"typecheck": "tsc --noEmit",
|
|
18
20
|
"all": "pnpm format && pnpm typecheck && pnpm lint"
|
|
19
21
|
},
|
|
20
|
-
"keywords": [
|
|
22
|
+
"keywords": [
|
|
23
|
+
"claude",
|
|
24
|
+
"tui",
|
|
25
|
+
"terminal",
|
|
26
|
+
"process-manager"
|
|
27
|
+
],
|
|
21
28
|
"author": "ziheng",
|
|
22
29
|
"license": "MIT",
|
|
23
30
|
"dependencies": {
|
|
@@ -37,4 +44,4 @@
|
|
|
37
44
|
"engines": {
|
|
38
45
|
"node": ">=18"
|
|
39
46
|
}
|
|
40
|
-
}
|
|
47
|
+
}
|