@blueprint-chart/docs 0.1.18 → 0.1.20

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.
@@ -109,7 +109,7 @@
109
109
  "slug": "getting-started",
110
110
  "group": "guide",
111
111
  "title": "getting started",
112
- "blurb": "Blueprint Chart is published as three packages on NPM. Pick the one that matches what you're building.",
112
+ "blurb": "Blueprint Chart is published as four packages on NPM. Pick the one that matches what you're building.",
113
113
  "mdPath": "guide/getting-started.md"
114
114
  },
115
115
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprint-chart/docs",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
4
4
  "description": "Public documentation for Blueprint Chart — handbook, guide, BPC DSL spec, and lib API reference.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -32,18 +32,7 @@
32
32
  "access": "public",
33
33
  "provenance": true
34
34
  },
35
- "scripts": {
36
- "dev": "vitepress dev src --host 0.0.0.0 --port 4445",
37
- "build:vitepress": "vitepress build src",
38
- "build:manifest": "tsx scripts/build-manifest.ts",
39
- "build:api": "tsc --project tsconfig.api.json",
40
- "build": "pnpm run build:vitepress && pnpm run build:manifest && pnpm run build:api",
41
- "preview": "vitepress preview src --host 0.0.0.0 --port 4445",
42
- "test": "vitest run"
43
- },
44
35
  "devDependencies": {
45
- "@blueprint-chart/lib": "workspace:*",
46
- "@blueprint-chart/ui": "workspace:*",
47
36
  "@types/node": "^22.10.0",
48
37
  "@fontsource-variable/geist": "^5.2.8",
49
38
  "@fontsource-variable/geist-mono": "^5.2.7",
@@ -58,6 +47,18 @@
58
47
  "unplugin-icons": "^23.0.1",
59
48
  "vitepress": "^1.5.0",
60
49
  "vitest": "^3.2.4",
61
- "vue": "^3.5"
50
+ "vue": "^3.5",
51
+ "@blueprint-chart/lib": "0.1.20",
52
+ "@blueprint-chart/ui": "0.1.20"
53
+ },
54
+ "scripts": {
55
+ "dev": "vitepress dev src --host 0.0.0.0 --port 4445",
56
+ "build:vitepress": "vitepress build src",
57
+ "build:manifest": "tsx scripts/build-manifest.ts",
58
+ "build:api": "tsc --project tsconfig.api.json",
59
+ "build:package": "pnpm run build:manifest && pnpm run build:api",
60
+ "build": "pnpm run build:vitepress && pnpm run build:package",
61
+ "preview": "vitepress preview src --host 0.0.0.0 --port 4445",
62
+ "test": "vitest run"
62
63
  }
63
- }
64
+ }
@@ -1,6 +1,6 @@
1
1
  # Getting Started
2
2
 
3
- Blueprint Chart is published as three packages on NPM. Pick the one that matches what you're building.
3
+ Blueprint Chart is published as four packages on NPM. Pick the one that matches what you're building.
4
4
 
5
5
  <table>
6
6
  <thead><tr><th>Package</th><th>When to use it</th></tr></thead>
@@ -8,6 +8,7 @@ Blueprint Chart is published as three packages on NPM. Pick the one that matches
8
8
  <tr><td nowrap><a href="https://www.npmjs.com/package/@blueprint-chart/lib"><code>@blueprint-chart/lib</code></a></td><td>Pure TypeScript chart engine — render charts from data + options or from a <code>.bpc</code> source. No Vue.</td></tr>
9
9
  <tr><td nowrap><a href="https://www.npmjs.com/package/@blueprint-chart/ui"><code>@blueprint-chart/ui</code></a></td><td>Vue 3 component library — forms, panels, navigation, scene timeline, layout primitives.</td></tr>
10
10
  <tr><td nowrap><a href="https://www.npmjs.com/package/@blueprint-chart/editor"><code>@blueprint-chart/editor</code></a></td><td>The full SPA — runs on top of <code>lib</code> + <code>ui</code>. Deployed at <a href="https://blueprintchart.com">blueprintchart.com</a>.</td></tr>
11
+ <tr><td nowrap><a href="https://www.npmjs.com/package/@blueprint-chart/docs"><code>@blueprint-chart/docs</code></a></td><td>The markdown source of this site — handbook, guide, BPC DSL spec, and lib API reference. Exposes <code>listDocs</code> / <code>getDoc</code> + <code>manifest.json</code> for tooling such as <code>@blueprint-chart/mcp</code>.</td></tr>
11
12
  </tbody>
12
13
  </table>
13
14