sketchmark 1.1.6 → 1.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sketchmark",
3
- "version": "1.1.6",
3
+ "version": "1.2.0",
4
4
  "description": "A plain-text DSL for hand-drawn diagrams. Write boxes, edges, and groups as code — renders sketchy SVG/Canvas via rough.js with a built-in step-by-step animation system.",
5
5
  "keywords": [
6
6
  "diagram",
@@ -35,6 +35,23 @@
35
35
  "build": "rollup -c rollup.config.js",
36
36
  "build:watch": "rollup -c rollup.config.js --watch",
37
37
  "typecheck": "tsc --noEmit",
38
+ "build:plugin-chem-molecule": "npm run build --workdir packages/plugin-chem-molecule",
39
+ "build:plugin-circuit": "npm run build --workdir packages/plugin-circuit",
40
+ "build:plugin-anchors": "npm run build --workdir packages/plugin-anchors",
41
+ "build:plugin-annotations": "npm run build --workdir packages/plugin-annotations",
42
+ "build:plugin-geometry": "npm run build --workdir packages/plugin-geometry",
43
+ "build:plugin-graph": "npm run build --workdir packages/plugin-graph",
44
+ "build:plugin-character": "npm --prefix packages/plugin-character run build",
45
+ "build:plugin-wireframe": "npm run build --workdir packages/plugin-wireframe",
46
+ "typecheck:plugin-chem-molecule": "npm run typecheck --workdir packages/plugin-chem-molecule",
47
+ "typecheck:plugin-circuit": "npm run typecheck --workdir packages/plugin-circuit",
48
+ "typecheck:plugin-anchors": "npm run typecheck --workdir packages/plugin-anchors",
49
+ "typecheck:plugin-annotations": "npm run typecheck --workdir packages/plugin-annotations",
50
+ "typecheck:plugin-notation": "npm run typecheck --workdir packages/plugin-notation",
51
+ "typecheck:plugin-geometry": "npm run typecheck --workdir packages/plugin-geometry",
52
+ "typecheck:plugin-graph": "npm run typecheck --workdir packages/plugin-graph",
53
+ "typecheck:plugin-character": "npm --prefix packages/plugin-character run typecheck",
54
+ "typecheck:plugin-wireframe": "npm run typecheck --workdir packages/plugin-wireframe",
38
55
  "lint": "eslint src --ext .ts",
39
56
  "prepublishOnly": "npm run typecheck && npm run build",
40
57
  "deploy": "wrangler deploy",