@memo-code/memo 0.1.0 → 0.2.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 +58 -56
package/package.json
CHANGED
|
@@ -1,57 +1,59 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
2
|
+
"name": "@memo-code/memo",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"description": "AI programming assistant with multi-turn conversations, tool calling, and concurrent execution",
|
|
7
|
+
"bin": {
|
|
8
|
+
"memo": "./dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/index.js",
|
|
12
|
+
"dist/prompt.md",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18.0.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/node": "^22.10.2",
|
|
21
|
+
"@types/react": "^18.2.79",
|
|
22
|
+
"prettier": "^3.3.3",
|
|
23
|
+
"tsup": "^8.3.5",
|
|
24
|
+
"tsx": "^4.19.2",
|
|
25
|
+
"typescript": "^5.7.2",
|
|
26
|
+
"vite-tsconfig-paths": "^6.0.5",
|
|
27
|
+
"vitest": "^2.1.8"
|
|
28
|
+
},
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@dqbd/tiktoken": "^1.0.22",
|
|
31
|
+
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
32
|
+
"fast-glob": "^3.3.3",
|
|
33
|
+
"ink": "^5.0.0",
|
|
34
|
+
"jsonrepair": "^3.13.2",
|
|
35
|
+
"marked": "^17.0.1",
|
|
36
|
+
"openai": "^6.10.0",
|
|
37
|
+
"react": "^18.2.0",
|
|
38
|
+
"react-reconciler": "^0.29.0",
|
|
39
|
+
"string-width": "^7.2.0",
|
|
40
|
+
"toml": "^3.0.0",
|
|
41
|
+
"zod": "^4.3.6",
|
|
42
|
+
"zod-to-json-schema": "^3.25.1"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"start": "tsx packages/cli/src/index.tsx",
|
|
46
|
+
"build": "tsup",
|
|
47
|
+
"dev": "tsup --watch",
|
|
48
|
+
"format": "prettier --write .",
|
|
49
|
+
"format:check": "prettier --check .",
|
|
50
|
+
"test": "vitest run",
|
|
51
|
+
"test:core": "vitest run packages/core",
|
|
52
|
+
"test:tools": "vitest run packages/tools",
|
|
53
|
+
"test:cli": "vitest run packages/cli",
|
|
54
|
+
"ci": "pnpm run format:check && pnpm run test:core && pnpm run test:tools && pnpm run build",
|
|
55
|
+
"release:patch": "npm version patch && npm publish",
|
|
56
|
+
"release:minor": "npm version minor && npm publish",
|
|
57
|
+
"release:major": "npm version major && npm publish"
|
|
58
|
+
}
|
|
59
|
+
}
|