@poltergeist-ai/cli 0.0.0 → 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/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poltergeist-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Build contributor ghost profiles from git, GitLab, Slack, and docs for simulated code reviews",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,11 +23,13 @@
|
|
|
23
23
|
"@types/node": "^22.0.0",
|
|
24
24
|
"tsup": "^8.0.0",
|
|
25
25
|
"tsx": "^4.0.0",
|
|
26
|
-
"typescript": "^5.7.0"
|
|
26
|
+
"typescript": "^5.7.0",
|
|
27
|
+
"vitest": "^4.1.2"
|
|
27
28
|
},
|
|
28
29
|
"scripts": {
|
|
29
30
|
"build": "tsup",
|
|
30
31
|
"dev": "tsx src/cli.ts",
|
|
31
|
-
"typecheck": "tsc --noEmit"
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"test": "vitest run"
|
|
32
34
|
}
|
|
33
35
|
}
|