Compare commits
10 commits
e9c802333e
...
135ac4eabb
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
135ac4eabb | ||
|
|
3a9ad560e9 | ||
|
|
160011e7b6 | ||
|
|
5c72108474 | ||
|
|
7ceb64d5d7 | ||
|
|
de7255e3ba | ||
|
|
bdcf098634 | ||
|
|
ead29898ee | ||
|
|
25917af298 | ||
|
|
07c1d35e42 |
5 changed files with 32 additions and 56 deletions
|
|
@ -6,7 +6,7 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
NODE_VERSION: '20'
|
||||
NODE_VERSION: '22'
|
||||
PNPM_VERSION: '9'
|
||||
|
||||
jobs:
|
||||
|
|
@ -18,11 +18,16 @@ jobs:
|
|||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup environment
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: ${{ env.NODE_VERSION }}
|
||||
|
||||
- name: Setup pnpm
|
||||
run: |
|
||||
node --version && npm --version
|
||||
npm install -g pnpm@${{ env.PNPM_VERSION }}
|
||||
pnpm --version
|
||||
echo "Node: $(node --version)"
|
||||
echo "pnpm: $(pnpm --version)"
|
||||
|
||||
- name: Configure npm for Forgejo registry
|
||||
run: |
|
||||
|
|
|
|||
|
|
@ -507,3 +507,4 @@ MIT
|
|||
|
||||
**Last Updated**: 2025-12-11
|
||||
**Maintained by**: [Your Name/Organization]
|
||||
# FINAL 1767646551
|
||||
|
|
|
|||
|
|
@ -1,39 +1,9 @@
|
|||
import tsParser from '@typescript-eslint/parser';
|
||||
import tsPlugin from '@typescript-eslint/eslint-plugin';
|
||||
import tseslint from 'typescript-eslint';
|
||||
import { createBaseConfig } from '@lilith/configs/eslint/base-flat';
|
||||
|
||||
export default [
|
||||
{
|
||||
ignores: ['dist/**', 'node_modules/**', '*.config.js'],
|
||||
},
|
||||
{
|
||||
files: ['src/**/*.ts'],
|
||||
languageOptions: {
|
||||
parser: tsParser,
|
||||
parserOptions: {
|
||||
ecmaVersion: 2022,
|
||||
sourceType: 'module',
|
||||
project: './tsconfig.json',
|
||||
},
|
||||
globals: {
|
||||
console: 'readonly',
|
||||
process: 'readonly',
|
||||
Buffer: 'readonly',
|
||||
},
|
||||
},
|
||||
plugins: {
|
||||
'@typescript-eslint': tsPlugin,
|
||||
},
|
||||
rules: {
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'error',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_',
|
||||
},
|
||||
],
|
||||
'@typescript-eslint/explicit-function-return-types': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'warn',
|
||||
'no-console': 'off',
|
||||
},
|
||||
},
|
||||
];
|
||||
export default tseslint.config(
|
||||
...createBaseConfig({
|
||||
tsconfigRootDir: import.meta.dirname,
|
||||
tsconfigPath: './tsconfig.json',
|
||||
})
|
||||
);
|
||||
|
|
|
|||
26
package.json
26
package.json
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "@lilith/mcp-stream-workflow",
|
||||
"name": "@lilith/mcp-stream-workflow-ts",
|
||||
"version": "0.2.0",
|
||||
"deprecated": "This package is deprecated. The worktree workflow methodology is no longer maintained.",
|
||||
"description": "AI-powered worktree workflow automation MCP server",
|
||||
|
|
@ -39,20 +39,20 @@
|
|||
"author": "Victoria Lackey <VictoriaLackey@pm.me>",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@lilith/mcp-common": "workspace:*",
|
||||
"@modelcontextprotocol/sdk": "^1.24.3",
|
||||
"simple-git": "^3.27.0",
|
||||
"zod": "^3.23.8"
|
||||
"@lilith/mcp-common-ts": "workspace:*",
|
||||
"@modelcontextprotocol/sdk": "^1.25.2",
|
||||
"simple-git": "^3.30.0",
|
||||
"zod": "^3.25.76"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.10.1",
|
||||
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
||||
"@typescript-eslint/parser": "^8.15.0",
|
||||
"eslint": "^9.15.0",
|
||||
"typescript": "^5.7.2",
|
||||
"vitest": "^2.1.5",
|
||||
"@vitest/coverage-v8": "^2.1.5",
|
||||
"@lilith/configs": "workspace:*"
|
||||
"@lilith/configs-ts": "workspace:*",
|
||||
"@types/node": "^22.19.5",
|
||||
"@typescript-eslint/eslint-plugin": "^8.52.0",
|
||||
"@typescript-eslint/parser": "^8.52.0",
|
||||
"@vitest/coverage-v8": "^2.1.9",
|
||||
"eslint": "^9.39.2",
|
||||
"typescript": "^5.9.3",
|
||||
"vitest": "^2.1.9"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"extends": "@lilith/configs/typescript/esm.json",
|
||||
"extends": "@lilith/configs-ts/typescript/esm.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist",
|
||||
"rootDir": "./src"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue