vertex-palace 0.1.3

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 ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "vertex-palace",
3
+ "version": "0.1.3",
4
+ "description": "Memory-palace context routing for Codex coding tasks.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "vertex-palace": "dist/palace.cjs",
9
+ "palace": "dist/palace.cjs",
10
+ "vertex-palace-mcp": "plugins/vertex-palace/mcp/server.cjs"
11
+ },
12
+ "files": [
13
+ "dist/",
14
+ "plugins/vertex-palace/mcp/server.cjs",
15
+ "README.md",
16
+ "LICENSE"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/lohchanhin/vertex-palace.git"
21
+ },
22
+ "homepage": "https://github.com/lohchanhin/vertex-palace#readme",
23
+ "bugs": {
24
+ "url": "https://github.com/lohchanhin/vertex-palace/issues"
25
+ },
26
+ "keywords": [
27
+ "codex",
28
+ "mcp",
29
+ "coding-agent",
30
+ "context",
31
+ "repo-map",
32
+ "memory-palace",
33
+ "ai-agent"
34
+ ],
35
+ "engines": {
36
+ "node": ">=20"
37
+ },
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
41
+ "scripts": {
42
+ "build": "pnpm -r build && pnpm build:plugin-mcp && pnpm build:package-cli",
43
+ "build:plugin-mcp": "tsup --config tsup.plugin-mcp.config.ts && node scripts/trim-generated.cjs",
44
+ "build:package-cli": "tsup --config tsup.package-cli.config.ts && node scripts/trim-generated.cjs",
45
+ "test": "pnpm -r test",
46
+ "lint": "pnpm -r exec tsc --noEmit -p tsconfig.json --pretty false",
47
+ "clean": "pnpm -r clean"
48
+ },
49
+ "devDependencies": {
50
+ "@types/node": "^20.19.9",
51
+ "tsup": "^8.5.0",
52
+ "tsx": "^4.20.3",
53
+ "typescript": "^5.8.3",
54
+ "vitest": "^2.1.9"
55
+ },
56
+ "packageManager": "pnpm@11.7.0"
57
+ }