-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.5 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.5 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "helixir",
"version": "0.4.1",
"description": "MCP server that gives AI agents full situational awareness of any web component library",
"type": "module",
"bin": {
"helixir": "./build/src/index.js"
},
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"exports": {
".": "./build/src/index.js",
"./api": "./build/src/api/index.js",
"./mcp": "./build/src/mcp/index.js",
"./cli": "./build/src/cli/index.js",
"./core": "./build/packages/core/src/index.js",
"./core/handlers": "./build/packages/core/src/handlers/index.js",
"./core/handlers/*": "./build/packages/core/src/handlers/*.js",
"./core/shared": "./build/packages/core/src/shared/index.js",
"./core/shared/*": "./build/packages/core/src/shared/*.js",
"./core/tools/*": "./build/packages/core/src/tools/*.js",
"./core/config": "./build/packages/core/src/config.js"
},
"files": [
"build",
"!build/**/*.map",
"packages/core/src",
"src/skills",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc && chmod 755 build/src/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"type-check": "tsc --noEmit",
"lint": "eslint src packages/core/src",
"lint:fix": "eslint src packages/core/src --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"cem:generate": "cem analyze && node scripts/normalize-cem.mjs",
"cem:check": "pnpm run cem:generate && git diff --exit-code custom-elements.json",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"keywords": [
"mcp",
"model-context-protocol",
"web-components",
"custom-elements",
"lit",
"design-system",
"claude",
"ai",
"developer-tools"
],
"license": "MIT",
"author": {
"name": "Booked Solid",
"url": "https://github.com/bookedsolidtech"
},
"repository": {
"type": "git",
"url": "https://github.com/bookedsolidtech/helixir.git"
},
"homepage": "https://github.com/bookedsolidtech/helixir#readme",
"bugs": {
"url": "https://github.com/bookedsolidtech/helixir/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^3.22.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@custom-elements-manifest/analyzer": "^0.11.0",
"@eslint/js": "^9.39.3",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.56.1",
"vitest": "^3.0.0"
},
"pnpm": {
"overrides": {
"hono": ">=4.12.7",
"@hono/node-server": ">=1.19.10",
"express-rate-limit": ">=8.2.2",
"undici": ">=7.24.0",
"flatted": ">=3.4.0"
}
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,md,yml,yaml}": [
"prettier --write"
]
},
"customElements": "custom-elements.json"
}