@prover-coder-ai/context-doc 1.0.21 → 1.0.23
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/README.md +1 -2
- package/package.json +4 -47
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# context-doc
|
|
2
2
|
|
|
3
3
|
Syncs AI assistant conversation history (Claude, Codex, Qwen) to your project's `.knowledge` folder.
|
|
4
4
|
|
|
@@ -9,7 +9,6 @@ npx @prover-coder-ai/context-doc
|
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
Example:
|
|
12
|
-
|
|
13
12
|
```
|
|
14
13
|
user@arch ~/effect-template (main)> npx @prover-coder-ai/context-doc
|
|
15
14
|
Claude: source not found; skipped syncing (Claude project directory is missing)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prover-coder-ai/context-doc",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.23",
|
|
4
4
|
"description": "Minimal Vite-powered TypeScript console starter using Effect",
|
|
5
5
|
"main": "dist/main.js",
|
|
6
6
|
"bin": {
|
|
@@ -35,53 +35,10 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@effect/
|
|
39
|
-
"@effect/
|
|
40
|
-
"@effect/experimental": "^0.58.0",
|
|
41
|
-
"@effect/platform": "^0.94.1",
|
|
42
|
-
"@effect/platform-node": "^0.104.0",
|
|
43
|
-
"@effect/printer": "^0.47.0",
|
|
44
|
-
"@effect/printer-ansi": "^0.47.0",
|
|
45
|
-
"@effect/rpc": "^0.73.0",
|
|
38
|
+
"@effect/platform": "^0.94.2",
|
|
39
|
+
"@effect/platform-node": "^0.104.1",
|
|
46
40
|
"@effect/schema": "^0.75.5",
|
|
47
|
-
"
|
|
48
|
-
"@effect/typeclass": "^0.38.0",
|
|
49
|
-
"@effect/workflow": "^0.16.0",
|
|
50
|
-
"effect": "^3.19.14",
|
|
51
|
-
"ts-morph": "^27.0.2"
|
|
52
|
-
},
|
|
53
|
-
"devDependencies": {
|
|
54
|
-
"@biomejs/biome": "^2.3.11",
|
|
55
|
-
"@effect/eslint-plugin": "^0.3.2",
|
|
56
|
-
"@effect/language-service": "latest",
|
|
57
|
-
"@effect/vitest": "^0.27.0",
|
|
58
|
-
"@eslint-community/eslint-plugin-eslint-comments": "^4.6.0",
|
|
59
|
-
"@eslint/compat": "2.0.1",
|
|
60
|
-
"@eslint/eslintrc": "3.3.3",
|
|
61
|
-
"@eslint/js": "9.39.2",
|
|
62
|
-
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.15",
|
|
63
|
-
"@ton-ai-core/vibecode-linter": "^1.0.6",
|
|
64
|
-
"@types/node": "^24.10.9",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
66
|
-
"@typescript-eslint/parser": "^8.53.1",
|
|
67
|
-
"@vitest/coverage-v8": "^4.0.17",
|
|
68
|
-
"@vitest/eslint-plugin": "^1.6.6",
|
|
69
|
-
"eslint": "^9.39.2",
|
|
70
|
-
"eslint-import-resolver-typescript": "^4.4.4",
|
|
71
|
-
"eslint-plugin-codegen": "0.34.1",
|
|
72
|
-
"eslint-plugin-import": "^2.32.0",
|
|
73
|
-
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
74
|
-
"eslint-plugin-sonarjs": "^3.0.5",
|
|
75
|
-
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
76
|
-
"eslint-plugin-unicorn": "^62.0.0",
|
|
77
|
-
"fast-check": "^4.5.3",
|
|
78
|
-
"globals": "^17.0.0",
|
|
79
|
-
"jscpd": "^4.0.7",
|
|
80
|
-
"typescript": "^5.9.3",
|
|
81
|
-
"typescript-eslint": "^8.53.1",
|
|
82
|
-
"vite": "^7.3.1",
|
|
83
|
-
"vite-tsconfig-paths": "^6.0.4",
|
|
84
|
-
"vitest": "^4.0.17"
|
|
41
|
+
"effect": "^3.19.15"
|
|
85
42
|
},
|
|
86
43
|
"scripts": {
|
|
87
44
|
"build": "vite build --ssr src/app/main.ts",
|