shumoku 0.2.0 → 0.2.4

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/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from '@shumoku/core';
2
2
  export * from '@shumoku/parser-yaml';
3
+ export * from '@shumoku/renderer';
3
4
  import '@shumoku/icons';
4
5
  export { vendorIconSets } from '@shumoku/icons';
5
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,eAAe,CAAA;AAG7B,cAAc,sBAAsB,CAAA;AAIpC,OAAO,gBAAgB,CAAA;AAGvB,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,cAAc,eAAe,CAAA;AAG7B,cAAc,sBAAsB,CAAA;AAGpC,cAAc,mBAAmB,CAAA;AAIjC,OAAO,gBAAgB,CAAA;AAGvB,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA"}
package/dist/index.js CHANGED
@@ -2,6 +2,8 @@
2
2
  export * from '@shumoku/core';
3
3
  // Re-export parser
4
4
  export * from '@shumoku/parser-yaml';
5
+ // Re-export renderer (SVG, HTML, interactive runtime)
6
+ export * from '@shumoku/renderer';
5
7
  // Import icons for side effects (auto-registration)
6
8
  // Note: Icon types are already exported from @shumoku/core
7
9
  import '@shumoku/icons';
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,iCAAiC;AACjC,cAAc,eAAe,CAAA;AAE7B,mBAAmB;AACnB,cAAc,sBAAsB,CAAA;AAEpC,oDAAoD;AACpD,2DAA2D;AAC3D,OAAO,gBAAgB,CAAA;AAEvB,yEAAyE;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,iCAAiC;AACjC,cAAc,eAAe,CAAA;AAE7B,mBAAmB;AACnB,cAAc,sBAAsB,CAAA;AAEpC,sDAAsD;AACtD,cAAc,mBAAmB,CAAA;AAEjC,oDAAoD;AACpD,2DAA2D;AAC3D,OAAO,gBAAgB,CAAA;AAEvB,yEAAyE;AACzE,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA"}
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "shumoku",
3
- "version": "0.2.0",
3
+ "version": "0.2.4",
4
4
  "description": "Modern network topology visualization library for TypeScript/JavaScript",
5
5
  "license": "MIT",
6
6
  "author": "konoe-akitoshi",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/konoe-akitoshi/shumoku.git",
9
+ "url": "git+https://github.com/konoe-akitoshi/shumoku.git",
10
10
  "directory": "packages/shumoku"
11
11
  },
12
12
  "homepage": "https://shumoku.packof.me/",
@@ -40,9 +40,10 @@
40
40
  "typecheck": "tsc --noEmit"
41
41
  },
42
42
  "dependencies": {
43
- "@shumoku/core": "^0.2.0",
44
- "@shumoku/icons": "^0.2.0",
45
- "@shumoku/parser-yaml": "^0.2.0"
43
+ "@shumoku/core": "^0.2.3",
44
+ "@shumoku/icons": "^0.2.3",
45
+ "@shumoku/parser-yaml": "^0.2.3",
46
+ "@shumoku/renderer": "^0.2.3"
46
47
  },
47
48
  "publishConfig": {
48
49
  "access": "public"