getmnemos 0.3.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/README.md +23 -0
- package/bin/getmnemos.cjs +2 -0
- package/bin/mnemos.cjs +2 -0
- package/dist/discipline/fable-mindset.md +317 -0
- package/dist/npm.cjs +264110 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "getmnemos",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Get Mnemos — the memory layer for software. One command, instant codebase intelligence.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"getmnemos": "bin/getmnemos.cjs",
|
|
8
|
+
"mnemos": "bin/mnemos.cjs"
|
|
9
|
+
},
|
|
10
|
+
"main": "./dist/index.js",
|
|
11
|
+
"files": [
|
|
12
|
+
"bin",
|
|
13
|
+
"dist/npm.cjs",
|
|
14
|
+
"dist/discipline/fable-mindset.md",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"keywords": [
|
|
18
|
+
"mnemos",
|
|
19
|
+
"getmnemos",
|
|
20
|
+
"memory",
|
|
21
|
+
"ai",
|
|
22
|
+
"codebase",
|
|
23
|
+
"architecture",
|
|
24
|
+
"intelligence",
|
|
25
|
+
"cli",
|
|
26
|
+
"cursor",
|
|
27
|
+
"claude",
|
|
28
|
+
"mcp",
|
|
29
|
+
"security",
|
|
30
|
+
"knowledge-graph"
|
|
31
|
+
],
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git+https://github.com/bitreonx/mnemos.git",
|
|
35
|
+
"directory": "packages/cli"
|
|
36
|
+
},
|
|
37
|
+
"bugs": {
|
|
38
|
+
"url": "https://github.com/bitreonx/mnemos/issues"
|
|
39
|
+
},
|
|
40
|
+
"homepage": "https://getmnemos.vercel.app",
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc -p tsconfig.json",
|
|
44
|
+
"bundle": "node scripts/bundle.mjs",
|
|
45
|
+
"pkg": "node scripts/pkg.mjs",
|
|
46
|
+
"prepare:publish": "node scripts/prepare-npm-publish.mjs",
|
|
47
|
+
"validate:publish": "node scripts/validate-publish.mjs",
|
|
48
|
+
"prepublishOnly": "npm run build --prefix ../core && npm run build && node scripts/prepare-npm-publish.mjs && node scripts/validate-publish.mjs",
|
|
49
|
+
"postpublish": "node scripts/strip-publish-deps.mjs restore"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@types/node": "^22.15.21",
|
|
54
|
+
"@yao-pkg/pkg": "^5.16.1",
|
|
55
|
+
"esbuild": "^0.25.0",
|
|
56
|
+
"typescript": "^5.8.3"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=20"
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
}
|
|
64
|
+
}
|