Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@weave-md/core

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@weave-md/core - npm Package Compare versions

Comparing version
0.1.0-alpha.0
to
0.2.0-alpha.0
+21
LICENSE
MIT License
Copyright (c) 2025 weavepage
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
+7
-7
{
"name": "@weave-md/core",
"version": "0.1.0-alpha.0",
"version": "0.2.0-alpha.0",
"description": "Weave Markdown language contract - spec, schemas, types, and pure helpers",

@@ -24,5 +24,2 @@ "type": "module",

},
"scripts": {
"build": "tsc"
},
"keywords": [

@@ -34,3 +31,3 @@ "weave",

],
"author": "",
"author": "weavepage",
"license": "MIT",

@@ -44,4 +41,7 @@ "repository": {

"@types/node": "^20.10.0",
"typescript": "^5.3.0"
"typescript": "^5.7.0"
},
"scripts": {
"build": "tsc"
}
}
}

@@ -29,3 +29,3 @@ # @weave-md/core

```bash
npm install @weave-md/core
pnpm add @weave-md/core
```

@@ -73,2 +73,6 @@

## For AI Agents
[AGENTS.md](./AGENTS.md) provides a concise syntax reference for AI coding agents that need to write Weave Markdown content. Copy it to your project's content directory so agents can reference it when generating Weave MD.
## Links

@@ -78,2 +82,3 @@

- [Schemas](./schema/)
- [AGENTS.md](./AGENTS.md)
- [GitHub Repository](https://github.com/weavepage/weave-md)

@@ -80,0 +85,0 @@

@@ -50,6 +50,6 @@ # Conformance Testing

# Test core parsing (AST + graph)
npm run conformance:core
pnpm conformance:core
# Test basic profile
npm run conformance:basic
pnpm conformance:basic
```

@@ -56,0 +56,0 @@

@@ -174,7 +174,8 @@ # Node Links — Full Overview

The `export` parameter in node links provides hints to exporters:
The `export` parameter provides hints to exporters for static output formats (e.g., email HTML, PDF, print) where JavaScript-based interactivity is unavailable.
- `appendix` - Prefer appendix placement
- `inline` - Prefer inline expansion
- `omit` - Exclude from export
**Export hint values:**
- `appendix` - Place referenced content in an appendix or endnotes section
- `inline` - Expand the full content inline at the reference point
- `omit` - Exclude the reference entirely from export

@@ -181,0 +182,0 @@ **Note**: These are hints, not requirements. Exporters MAY ignore them based on context.