@ersbeth/picoflow 2.3.0 → 2.3.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 +1 -1
- package/dist/picoflow.js +0 -1
- package/package.json +4 -18
package/README.md
CHANGED
|
@@ -56,7 +56,7 @@ pnpm test # watch Node tests
|
|
|
56
56
|
pnpm test:browser # watch browser tests
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
See [`CONTRIBUTING.md`](CONTRIBUTING.md) for the full setup, the conventions and the release procedure. Known issues and their status are tracked in [`audits/FINDINGS.md`](audits/FINDINGS.md); planned breaking changes in [`ROADMAP.md`](ROADMAP.md); vulnerability reporting in [`SECURITY.md`](SECURITY.md).
|
|
59
|
+
See [`CONTRIBUTING.md`](../../CONTRIBUTING.md) for the full setup, the conventions and the release procedure. Known issues and their status are tracked in [`audits/FINDINGS.md`](../../audits/FINDINGS.md); planned breaking changes in [`ROADMAP.md`](../../ROADMAP.md); vulnerability reporting in [`SECURITY.md`](../../SECURITY.md).
|
|
60
60
|
|
|
61
61
|
## AI Coding Agents
|
|
62
62
|
|
package/dist/picoflow.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ersbeth/picoflow",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"description": "Minimal Dataflow library for TypeScript",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@11.9.0",
|
|
@@ -36,43 +36,29 @@
|
|
|
36
36
|
"quality:diff": "node tools/quality/differential-graph.mjs 400",
|
|
37
37
|
"quality:bench": "node tools/quality/bench-core.mjs",
|
|
38
38
|
"quality:snippets": "node tools/quality/check-doc-snippets.mjs",
|
|
39
|
-
"quality:mutation": "bash tools/quality/mutation-test.sh"
|
|
40
|
-
"docs:dev": "pnpm exec vitepress dev docs",
|
|
41
|
-
"docs:build": "pnpm docs:generate && pnpm exec vitepress build docs",
|
|
42
|
-
"docs:preview": "pnpm exec vitepress preview docs",
|
|
43
|
-
"docs:generate": "pnpm exec typedoc"
|
|
39
|
+
"quality:mutation": "bash tools/quality/mutation-test.sh"
|
|
44
40
|
},
|
|
45
41
|
"peerDependencies": {
|
|
46
42
|
"solid-js": "^1.9.7"
|
|
47
43
|
},
|
|
48
44
|
"devDependencies": {
|
|
49
45
|
"@biomejs/biome": "2.3.8",
|
|
50
|
-
"@braintree/sanitize-url": "^7.1.1",
|
|
51
46
|
"@solidjs/testing-library": "^0.8.10",
|
|
52
47
|
"@vitest/browser-playwright": "^4.1.10",
|
|
53
48
|
"@vitest/coverage-v8": "4.1.10",
|
|
54
|
-
"cytoscape": "^3.33.1",
|
|
55
|
-
"cytoscape-cose-bilkent": "^4.1.0",
|
|
56
|
-
"dayjs": "^1.11.19",
|
|
57
|
-
"dompurify": "^3.4.13",
|
|
58
49
|
"jsdom": "^27.3.0",
|
|
59
|
-
"mermaid": "^11.16.1",
|
|
60
50
|
"playwright": "1.62.1",
|
|
61
|
-
"typedoc": "^0.28.15",
|
|
62
|
-
"typedoc-plugin-markdown": "^4.9.0",
|
|
63
|
-
"typedoc-vitepress-theme": "^1.1.2",
|
|
64
51
|
"typescript": "^5.9.3",
|
|
65
52
|
"vite": "^7.3.0",
|
|
66
53
|
"vite-plugin-dts": "^4.5.4",
|
|
67
54
|
"vite-plugin-solid": "^2.11.10",
|
|
68
55
|
"vite-tsconfig-paths": "^6.0.3",
|
|
69
|
-
"vitepress": "^1.6.4",
|
|
70
|
-
"vitepress-plugin-mermaid": "^2.0.17",
|
|
71
56
|
"vitest": "^4.1.10"
|
|
72
57
|
},
|
|
73
58
|
"repository": {
|
|
74
59
|
"type": "git",
|
|
75
|
-
"url": "git+https://gitlab.com/ersbeth-web/picoflow.git"
|
|
60
|
+
"url": "git+https://gitlab.com/ersbeth-web/picoflow.git",
|
|
61
|
+
"directory": "packages/picoflow"
|
|
76
62
|
},
|
|
77
63
|
"author": "Elisabeth Rousset",
|
|
78
64
|
"license": "MIT",
|