@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.
- package/README.md +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# @flowlint
|
|
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
|
|
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
|
|
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
|
+
|