@replikanti/flowlint-core 0.6.0 → 0.6.1

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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,17 +1,17 @@
1
- # @flowlint/core
1
+ # @replikanti/flowlint-core
2
2
 
3
3
  Core linting engine for n8n workflows. This package provides the fundamental building blocks for analyzing and validating n8n workflow files.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- npm install @flowlint/core
8
+ npm install @replikanti/flowlint-core
9
9
  ```
10
10
 
11
11
  ## Usage
12
12
 
13
13
  ```typescript
14
- import { parseN8n, runAllRules, loadConfig, defaultConfig } from '@flowlint/core';
14
+ import { parseN8n, runAllRules, loadConfig, defaultConfig } from '@replikanti/flowlint-core';
15
15
 
16
16
  // Parse a workflow from JSON string
17
17
  const workflow = parseN8n(workflowJsonString);
@@ -72,3 +72,4 @@ This package includes 14 built-in rules:
72
72
  ## License
73
73
 
74
74
  MIT
75
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@replikanti/flowlint-core",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Core linting engine for n8n workflows",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",