fromsrc 0.0.1 → 0.0.2
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 +49 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
```
|
|
2
|
+
┌──────────────────────────────────────────────────────────────┐
|
|
3
|
+
│ / fromsrc │
|
|
4
|
+
│ documentation framework for developers │
|
|
5
|
+
└──────────────────────────────────────────────────────────────┘
|
|
6
|
+
```
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
> what is this?
|
|
10
|
+
|
|
11
|
+
mdx docs from your own files.
|
|
12
|
+
typed frontmatter. composable primitives.
|
|
13
|
+
ai-native outputs built in.
|
|
14
|
+
|
|
15
|
+
> features?
|
|
16
|
+
|
|
17
|
+
✓ mdx with full control
|
|
18
|
+
✓ typed schemas with zod
|
|
19
|
+
✓ local search with heading support
|
|
20
|
+
✓ ai-native routes (llms.txt, raw markdown, mcp)
|
|
21
|
+
✓ framework adapters
|
|
22
|
+
✓ composable ui primitives
|
|
23
|
+
|
|
24
|
+
> frameworks?
|
|
25
|
+
|
|
26
|
+
next.js
|
|
27
|
+
astro
|
|
28
|
+
remix
|
|
29
|
+
react-router
|
|
30
|
+
vite
|
|
31
|
+
tanstack
|
|
32
|
+
|
|
33
|
+
> install?
|
|
34
|
+
|
|
35
|
+
bun add fromsrc
|
|
36
|
+
|
|
37
|
+
> ai-native?
|
|
38
|
+
|
|
39
|
+
/api/raw/intro
|
|
40
|
+
/api/llms/intro
|
|
41
|
+
/llms.txt
|
|
42
|
+
/llms-full.txt
|
|
43
|
+
/api/mcp
|
|
44
|
+
|
|
45
|
+
> links?
|
|
46
|
+
|
|
47
|
+
https://fromsrc.com
|
|
48
|
+
https://github.com/fromsrc/fromsrc
|
|
49
|
+
```
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fromsrc",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"description": "documentation framework for developers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/fromsrc/fromsrc"
|
|
7
|
+
"url": "git+https://github.com/fromsrc/fromsrc.git"
|
|
8
8
|
},
|
|
9
9
|
"homepage": "https://github.com/fromsrc/fromsrc",
|
|
10
10
|
"bugs": {
|