ovellum 0.0.0-placeholder
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 +11 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# ovellum
|
|
2
|
+
|
|
3
|
+
This is a placeholder. Ovellum is an open-source documentation tool for
|
|
4
|
+
TypeScript and JavaScript projects — letting auto-generated API
|
|
5
|
+
documentation and hand-written narrative coexist in the same files.
|
|
6
|
+
|
|
7
|
+
The real release is coming. Until then:
|
|
8
|
+
|
|
9
|
+
- Docs: https://ovellum.oss.oinam.com
|
|
10
|
+
- Code: https://github.com/oinam/ovellum
|
|
11
|
+
- Issues: https://github.com/oinam/ovellum/issues
|
package/package.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ovellum",
|
|
3
|
+
"version": "0.0.0-placeholder",
|
|
4
|
+
"description": "Placeholder reservation for Ovellum — an open-source documentation tool for TypeScript and JavaScript projects. The real release is coming. See the links below.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Brajeshwar Oinam <brajeshwar@oinam.com>",
|
|
7
|
+
"homepage": "https://ovellum.oss.oinam.com",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/oinam/ovellum.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/oinam/ovellum/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"documentation",
|
|
17
|
+
"docs",
|
|
18
|
+
"typescript",
|
|
19
|
+
"javascript",
|
|
20
|
+
"markdown",
|
|
21
|
+
"static-site-generator"
|
|
22
|
+
],
|
|
23
|
+
"files": [
|
|
24
|
+
"README.md"
|
|
25
|
+
]
|
|
26
|
+
}
|