doc-render-sdk 0.0.8 → 0.0.12

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.
@@ -0,0 +1,2 @@
1
+ import { DemoCodePluginOptions, createDemoCodePlugin, presets } from "../_chunks/index-C3VNauf3.mjs";
2
+ export { DemoCodePluginOptions, createDemoCodePlugin, presets };
@@ -0,0 +1,3 @@
1
+ import { createDemoCodePlugin, presets } from "../_chunks/plugin-DCF0RLbi.mjs";
2
+
3
+ export { createDemoCodePlugin, presets };
package/package.json CHANGED
@@ -1,16 +1,41 @@
1
1
  {
2
2
  "name": "doc-render-sdk",
3
- "version": "0.0.8",
3
+ "version": "0.0.12",
4
4
  "description": "A powerful documentation rendering SDK for component libraries",
5
5
  "main": "dist/index.mjs",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.mts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.mts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.mjs",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "./plugin": {
16
+ "types": "./dist/plugin/index.d.mts",
17
+ "import": "./dist/plugin/index.mjs",
18
+ "require": "./dist/plugin/index.mjs",
19
+ "default": "./dist/plugin/index.mjs"
20
+ }
21
+ },
22
+ "packageManager": "pnpm@10.9.0",
8
23
  "files": [
9
24
  "dist"
10
25
  ],
11
26
  "bin": {
12
27
  "doc-render-sdk": "./bin/doc-render-sdk.js"
13
28
  },
29
+ "scripts": {
30
+ "prepublishOnly": "npm run build",
31
+ "sdk:dev": "robuild --watch",
32
+ "dev": "turbo run sdk:dev playground:dev --parallel",
33
+ "build": "robuild",
34
+ "prepublish": "pnpm build",
35
+ "release": "changelogen --release && pnpm publish --no-git-checks",
36
+ "commit": "git-cz",
37
+ "playground:dev": "cd playground && pnpm dev"
38
+ },
14
39
  "keywords": [
15
40
  "documentation",
16
41
  "component",
@@ -47,17 +72,9 @@
47
72
  "git-cz": "^4.9.0",
48
73
  "react": "^18.2.0",
49
74
  "react-dom": "^18.2.0",
50
- "robuild": "^0.0.10",
75
+ "robuild": "^0.0.18",
51
76
  "turbo": "^2.5.6",
52
- "typescript": "^5.1.0"
53
- },
54
- "scripts": {
55
- "sdk:dev": "robuild --watch",
56
- "dev": "turbo run sdk:dev playground:dev --parallel",
57
- "build": "robuild",
58
- "prepublish": "pnpm build",
59
- "release": "changelogen --release && pnpm publish --no-git-checks",
60
- "commit": "git-cz",
61
- "playground:dev": "cd playground && pnpm dev"
77
+ "typescript": "^5.1.0",
78
+ "vite": "7.1.8"
62
79
  }
63
- }
80
+ }