squarified 0.3.5 → 0.3.6

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 CHANGED
@@ -2,7 +2,11 @@
2
2
 
3
3
  `squarified` is a minimal and powerful treemap component.
4
4
 
5
- ![display](./data.gif)
5
+
6
+
7
+ https://github.com/user-attachments/assets/caf30d9d-0a5a-446a-b767-7927bf4387c9
8
+
9
+
6
10
 
7
11
  ## Install
8
12
 
@@ -0,0 +1,4 @@
1
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
2
+ type Any = any
3
+
4
+ type AnyObject = Record<keyof Any, Any>
@@ -0,0 +1,4 @@
1
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
2
+ type Any = any
3
+
4
+ type AnyObject = Record<keyof Any, Any>
package/package.json CHANGED
@@ -1,36 +1,42 @@
1
1
  {
2
2
  "name": "squarified",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "squarified tree map",
5
- "main": "./dist/index.js",
6
- "module": "./dist/index.mjs",
7
- "types": "./dist/index.d.ts",
8
- "exports": {
9
- ".": {
10
- "squarified/__source__": "./src/index.ts",
11
- "import": "./dist/index.mjs",
12
- "default": "./dist/index.js"
13
- }
14
- },
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": "./src/index.ts",
15
9
  "keywords": [
16
10
  "squarified",
17
11
  "tree-map"
18
12
  ],
13
+ "files": [
14
+ "dist",
15
+ "LICENSE",
16
+ "README.md"
17
+ ],
19
18
  "repository": {
20
19
  "type": "git",
21
20
  "url": "git+https://github.com/nonzzz/squarified.git"
22
21
  },
23
22
  "author": "Kanno",
24
23
  "license": "MIT",
25
- "typesVersions": {
26
- "<5.0": {
27
- "*": [
28
- "*",
29
- "./*",
30
- "./*/index.d.ts",
31
- "./*/index.d.mts",
32
- "./*/index.d.cts"
33
- ]
34
- }
24
+ "devDependencies": {
25
+ "@types/js-yaml": "^4.0.9",
26
+ "@types/markdown-it": "^14.1.2",
27
+ "@types/node": "^22.7.4",
28
+ "chokidar": "^4.0.3",
29
+ "dprint": "^0.47.2",
30
+ "esbuild": "^0.24.0",
31
+ "eslint": "^9.16.0",
32
+ "eslint-config-kagura": "^3.0.1",
33
+ "highlight.js": "^11.11.1",
34
+ "jiek": "^2.3.3",
35
+ "js-yaml": "^4.1.0",
36
+ "markdown-it": "^14.1.0",
37
+ "tinyexec": "^0.3.2",
38
+ "tsx": "^4.19.2",
39
+ "typescript": "^5.7.3",
40
+ "vite-bundle-analyzer": "^0.16.2"
35
41
  }
36
42
  }
File without changes