@firfi/huly-mcp 0.9.1 → 0.9.2
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/dist/index.cjs +227 -79
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +19 -31
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firfi/huly-mcp",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "MCP server for Huly integration",
|
|
5
5
|
"mcpName": "io.github.dearlordylord/huly-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -19,25 +19,6 @@
|
|
|
19
19
|
"url": "https://github.com/dearlordylord/huly-mcp/issues"
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/dearlordylord/huly-mcp#readme",
|
|
22
|
-
"scripts": {
|
|
23
|
-
"prepare": "husky",
|
|
24
|
-
"start": "node dist/index.cjs",
|
|
25
|
-
"build": "PKG_VERSION=$(node -p \"require('./package.json').version\") && esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws \"--define:PKG_VERSION=\\\"$PKG_VERSION\\\"\"",
|
|
26
|
-
"typecheck": "tsc -p tsconfig.json --noEmit 2>&1 | { grep -E '^(src/|test/)' && exit 1 || exit 0; }",
|
|
27
|
-
"test": "vitest run",
|
|
28
|
-
"test:coverage": "vitest run --coverage",
|
|
29
|
-
"test:watch": "vitest",
|
|
30
|
-
"lint": "find src test -name '*.ts' -print0 | xargs -0 eslint && jscpd src",
|
|
31
|
-
"lint:fix": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix",
|
|
32
|
-
"format": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix --rule '@effect/dprint: error'",
|
|
33
|
-
"check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
|
|
34
|
-
"check-all": "pnpm build && pnpm typecheck && pnpm lint && pnpm test",
|
|
35
|
-
"circular": "madge --extensions ts --circular src",
|
|
36
|
-
"local-release": "changeset version && pnpm build && pnpm verify-version && changeset publish",
|
|
37
|
-
"verify-version": "node -e \"const v=require('./package.json').version; const d=require('fs').readFileSync('dist/index.cjs','utf8'); if(!d.includes('\\\"'+v+'\\\"'))throw new Error('dist version mismatch: expected '+v)\"",
|
|
38
|
-
"prepublishOnly": "pnpm check-all && pnpm verify-version",
|
|
39
|
-
"update-readme": "tsx scripts/update-readme-tools.ts"
|
|
40
|
-
},
|
|
41
22
|
"bin": {
|
|
42
23
|
"huly-mcp": "./dist/index.cjs",
|
|
43
24
|
"@firfi/huly-mcp": "./dist/index.cjs"
|
|
@@ -52,7 +33,6 @@
|
|
|
52
33
|
"claude",
|
|
53
34
|
"llm"
|
|
54
35
|
],
|
|
55
|
-
"packageManager": "pnpm@10.29.3",
|
|
56
36
|
"author": "dearlordylord",
|
|
57
37
|
"license": "MIT",
|
|
58
38
|
"dependencies": {
|
|
@@ -61,15 +41,6 @@
|
|
|
61
41
|
"lint-staged": {
|
|
62
42
|
"*.ts": "eslint --fix"
|
|
63
43
|
},
|
|
64
|
-
"pnpm": {
|
|
65
|
-
"onlyBuiltDependencies": [
|
|
66
|
-
"core-js",
|
|
67
|
-
"esbuild",
|
|
68
|
-
"@parcel/watcher",
|
|
69
|
-
"msgpackr-extract",
|
|
70
|
-
"unrs-resolver"
|
|
71
|
-
]
|
|
72
|
-
},
|
|
73
44
|
"devDependencies": {
|
|
74
45
|
"@changesets/cli": "^2.30.0",
|
|
75
46
|
"@effect/eslint-plugin": "^0.3.2",
|
|
@@ -122,5 +93,22 @@
|
|
|
122
93
|
"typescript": "^5.9.3",
|
|
123
94
|
"typescript-eslint": "^8.54.0",
|
|
124
95
|
"vitest": "latest"
|
|
96
|
+
},
|
|
97
|
+
"scripts": {
|
|
98
|
+
"start": "node dist/index.cjs",
|
|
99
|
+
"build": "PKG_VERSION=$(node -p \"require('./package.json').version\") && esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs --external:ws \"--define:PKG_VERSION=\\\"$PKG_VERSION\\\"\"",
|
|
100
|
+
"typecheck": "tsc -p tsconfig.json --noEmit 2>&1 | { grep -E '^(src/|test/)' && exit 1 || exit 0; }",
|
|
101
|
+
"test": "vitest run",
|
|
102
|
+
"test:coverage": "vitest run --coverage",
|
|
103
|
+
"test:watch": "vitest",
|
|
104
|
+
"lint": "find src test -name '*.ts' -print0 | xargs -0 eslint && jscpd src",
|
|
105
|
+
"lint:fix": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix",
|
|
106
|
+
"format": "find src test -name '*.ts' -print0 | xargs -0 eslint --fix --rule '@effect/dprint: error'",
|
|
107
|
+
"check-format": "find src test -name '*.ts' -print0 | xargs -0 eslint --rule '@effect/dprint: error'",
|
|
108
|
+
"check-all": "pnpm build && pnpm typecheck && pnpm lint && pnpm test",
|
|
109
|
+
"circular": "madge --extensions ts --circular src",
|
|
110
|
+
"local-release": "changeset version && pnpm build && pnpm verify-version && changeset publish",
|
|
111
|
+
"verify-version": "node -e \"const v=require('./package.json').version; const d=require('fs').readFileSync('dist/index.cjs','utf8'); if(!d.includes('\\\"'+v+'\\\"'))throw new Error('dist version mismatch: expected '+v)\"",
|
|
112
|
+
"update-readme": "tsx scripts/update-readme-tools.ts"
|
|
125
113
|
}
|
|
126
|
-
}
|
|
114
|
+
}
|