flowlint 0.1.1 → 0.1.3

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 +0 -4
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -40,10 +40,6 @@ rules:
40
40
  enabled: true
41
41
  ```
42
42
 
43
- ## Documentation
44
-
45
- See [FlowLint Documentation](https://github.com/Replikanti/flowlint/blob/main/flowlint-app/docs/CLI.md) for full usage guide, configuration options, and CI/CD integration examples.
46
-
47
43
  ## License
48
44
 
49
45
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flowlint",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "FlowLint CLI - Static analysis for n8n workflows",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -30,13 +30,15 @@
30
30
  "node": ">=22"
31
31
  },
32
32
  "dependencies": {
33
- "commander": "^12.1.0",
34
- "glob": "^10.3.10",
35
- "yaml": "^2.4.0",
36
33
  "ajv": "^8.17.1",
37
34
  "ajv-draft-04": "^1.0.0",
38
35
  "ajv-formats": "^3.0.1",
39
- "micromatch": "^4.0.8"
36
+ "commander": "^12.1.0",
37
+ "dotenv": "^16.4.0",
38
+ "glob": "^10.3.10",
39
+ "micromatch": "^4.0.8",
40
+ "pino": "^10.1.0",
41
+ "yaml": "^2.4.0"
40
42
  },
41
43
  "devDependencies": {
42
44
  "@types/node": "^22.0.0",