kakidash 0.2.0 → 0.2.2
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.ja.md +119 -123
- package/README.md +120 -123
- package/dist/index.d.ts +56 -7
- package/dist/kakidash.cjs +6 -4
- package/dist/kakidash.es.js +3965 -1171
- package/dist/kakidash.umd.js +6 -4
- package/package.json +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kakidash",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "A lightweight, dependency-free Mindmap library for the browser.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
"@playwright/test": "^1.58.2",
|
|
40
40
|
"@types/argparse": "^2.0.17",
|
|
41
41
|
"@types/estree": "^1.0.8",
|
|
42
|
+
"@types/jszip": "^3.4.1",
|
|
42
43
|
"@types/node": "^25.2.1",
|
|
43
44
|
"@types/whatwg-mimetype": "^3.0.2",
|
|
44
45
|
"@types/ws": "^8.18.1",
|
|
@@ -56,6 +57,9 @@
|
|
|
56
57
|
"vite-plugin-dts": "^4.5.4",
|
|
57
58
|
"vitest": "^4.0.17"
|
|
58
59
|
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"jszip": "^3.10.1"
|
|
62
|
+
},
|
|
59
63
|
"scripts": {
|
|
60
64
|
"dev": "vite --host",
|
|
61
65
|
"typecheck": "tsc --noEmit",
|
|
@@ -64,6 +68,7 @@
|
|
|
64
68
|
"lint": "eslint src tests",
|
|
65
69
|
"docs": "typedoc",
|
|
66
70
|
"format": "prettier --write \"src/**/*.{ts,json}\"",
|
|
71
|
+
"ci": "pnpm format && pnpm turbo run typecheck build lint docs && pnpm run test&& pnpm run test:e2e",
|
|
67
72
|
"turbo": "turbo",
|
|
68
73
|
"turbo:ci": "turbo run typecheck build test lint docs test:e2e",
|
|
69
74
|
"test:e2e": "playwright test"
|