-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.09 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.09 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "reftrixmcp",
"version": "0.3.0",
"private": true,
"type": "module",
"description": "WebDesign Knowledge Base Platform - Layout Analysis, Motion Detection, and Quality Evaluation with AI",
"author": "Reftrix Contributors",
"license": "AGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/TKMD/ReftrixMCP.git"
},
"homepage": "https://github.com/TKMD/ReftrixMCP#readme",
"bugs": {
"url": "https://github.com/TKMD/ReftrixMCP/issues"
},
"keywords": [
"webdesign",
"layout-analysis",
"motion-detection",
"quality-evaluation",
"search",
"semantic-search",
"mcp",
"claude",
"ai",
"knowledge-base",
"react",
"typescript",
"pgvector",
"embedding"
],
"packageManager": "pnpm@10.13.1",
"pnpm": {
"onlyBuiltDependencies": [
"onnxruntime-node",
"protobufjs"
],
"overrides": {
"express": ">=5.2.0",
"qs": ">=6.14.2",
"jsdom": "27.2.0",
"hono": ">=4.12.7",
"@hono/node-server": ">=1.19.10",
"tar": ">=7.5.11",
"rollup": ">=4.59.0",
"minimatch": ">=10.2.3",
"@modelcontextprotocol/sdk>ajv": ">=8.18.0",
"express-rate-limit": ">=8.2.2",
"flatted": ">=3.4.2",
"effect": ">=3.20.0",
"picomatch": ">=4.0.4",
"yaml": ">=2.8.3",
"lodash": ">=4.18.0",
"defu": ">=6.1.5"
}
},
"engines": {
"node": ">=20.19.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{ts,tsx,js,json,md}\" --ignore-path .gitignore",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:coverage": "turbo run test:coverage",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:smoke": "turbo run test:smoke",
"test:e2e": "turbo run test:e2e",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"db:generate": "turbo run db:generate --filter=@reftrixmcp/database",
"db:migrate": "turbo run db:migrate --filter=@reftrixmcp/database",
"db:seed": "turbo run db:seed --filter=@reftrixmcp/database",
"db:studio": "turbo run db:studio --filter=@reftrixmcp/database",
"docker:up": "docker compose -f docker/docker-compose.yml up -d",
"docker:down": "docker compose -f docker/docker-compose.yml down",
"docker:logs": "docker compose -f docker/docker-compose.yml logs -f",
"db:backup": "bash scripts/db-backup.sh",
"db:restore": "bash scripts/db-restore.sh",
"db:migrate:safe": "bash scripts/db-migrate-safe.sh",
"sbom": "cdxgen --output sbom.cdx.json --spec-version 1.6",
"prepare": "husky"
},
"devDependencies": {
"@cyclonedx/cdxgen": "^12.1.2",
"@types/js-yaml": "^4.0.9",
"husky": "^9.1.0",
"js-yaml": "^4.1.1",
"playwright": "^1.57.0",
"ts-morph": "^27.0.2",
"turbo": "^2.5.0"
}
}