-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.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
{
"name": "@rikaidev/mesen",
"publishConfig": {
"access": "public"
},
"version": "0.1.1",
"description": "Behavioral UX testing through simulated user perspectives. Persona-driven, evidence-based, model-agnostic.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/RikaiDev/mesen.git"
},
"bin": {
"mesen": "dist/cli.js"
},
"files": [
"dist/",
"skills/",
"guidelines/",
"presets/",
"commands/",
".claude-plugin/",
".mcp.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"workspaces": [
"packages/*",
"packages/agents/*",
"guidelines/*"
],
"scripts": {
"build": "turbo build",
"bundle": "tsup",
"dev": "turbo dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --build --force",
"test": "turbo test",
"prepublishOnly": "tsup",
"prepare": "husky",
"postinstall": "npx playwright install chromium || true"
},
"lint-staged": {
"*.{ts,tsx,js,json}": [
"biome check --write --no-errors-on-unmatched"
]
},
"engines": {
"node": ">=20"
},
"keywords": [
"ux",
"accessibility",
"testing",
"audit",
"wcag",
"persona",
"bdd",
"tablet",
"mcp",
"claude-code"
],
"dependencies": {
"@ai-sdk/anthropic": "^3.0.58",
"@ai-sdk/openai": "^3.0.41",
"@modelcontextprotocol/sdk": "^1.27.1",
"agent-browser": "^0.21.0",
"ai": "^6.0.116",
"chrome-launcher": "^1.2.1",
"gray-matter": "^4.0.3",
"lighthouse": "^13.0.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@types/node": "^25.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsup": "^8.5.1",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"why-is-node-running": "^3.2.2"
},
"packageManager": "bun@1.2.0",
"overrides": {
"fast-xml-parser": "^5.5.6"
}
}