@silicajs/core 0.1.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/README.md +10 -0
- package/dist/chunk-L565TMI5.js +1045 -0
- package/dist/chunk-L565TMI5.js.map +1 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.js +469 -0
- package/dist/index.js.map +1 -0
- package/dist/runtime.d.ts +25 -0
- package/dist/runtime.js +33 -0
- package/dist/runtime.js.map +1 -0
- package/dist/theme-Cd1tqolh.d.ts +235 -0
- package/dist/theme.d.ts +4 -0
- package/dist/theme.js +1 -0
- package/dist/theme.js.map +1 -0
- package/package.json +68 -0
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @silicajs/core
|
|
2
|
+
|
|
3
|
+
Framework-agnostic Silica core:
|
|
4
|
+
|
|
5
|
+
- `defineConfig()` / `loadConfig()`
|
|
6
|
+
- Quartz-inspired slug and wikilink helpers
|
|
7
|
+
- markdown render/analyze pipeline
|
|
8
|
+
- precompute artifacts (`manifest.json`, `graph.json`, `search-index.json`, `build-id.txt`)
|
|
9
|
+
|
|
10
|
+
This package is consumed by the CLI during precompute and by the generated Next.js runtime when rendering vault content.
|