vastlint 0.4.8 → 0.4.10

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 CHANGED
@@ -1,6 +1,17 @@
1
1
  # vastlint
2
2
 
3
- VAST XML validator for JavaScript and TypeScript. Checks ad tags against IAB Tech Lab VAST 2.0 through 4.3. Powered by a Rust/WASM core.
3
+ VAST XML linter for JavaScript and TypeScript. Validates ad tags against IAB Tech Lab VAST 2.0 through 4.3, SIMID 1.0–1.2 interactive creatives, and VPAID detection. Powered by a Rust/WASM core.
4
+
5
+ **Use this package when you need to:**
6
+ - Validate VAST XML in Node.js, Vite, Webpack, Rollup, or Deno
7
+ - Check SIMID `<InteractiveCreativeFile>` resources
8
+ - Detect VPAID usage and get migration guidance
9
+ - Inspect VAST wrapper chain structure
10
+ - Run creative validation inside an ad server, SSP, DSP, or SSAI pipeline
11
+
12
+ Try the live validator: [vastlint.org](https://vastlint.org) · Full rule reference: [vastlint.org/docs/rules](https://vastlint.org/docs/rules/)
13
+
14
+ For AI agents and agentic workflows: use the [vastlint MCP server](https://vastlint.org/docs/mcp/) at `https://vastlint.org/mcp` instead.
4
15
 
5
16
  [![npm](https://img.shields.io/npm/v/vastlint)](https://www.npmjs.com/package/vastlint)
6
17
  [![License](https://img.shields.io/badge/license-Apache--2.0-blue)](../vastlint/LICENSE)
@@ -116,3 +127,5 @@ const result = validate(xml);
116
127
  ## Source
117
128
 
118
129
  The Rust source and CLI tool live at [github.com/aleksUIX/vastlint](https://github.com/aleksUIX/vastlint).
130
+
131
+ VAST tag guides and worked examples: [vastlint.org/guides](https://vastlint.org/guides/)
package/package.json CHANGED
@@ -1,21 +1,36 @@
1
1
  {
2
2
  "name": "vastlint",
3
- "version": "0.4.8",
4
- "description": "VAST XML validatorchecks ad tags against IAB VAST 2.0 through 4.3",
3
+ "version": "0.4.10",
4
+ "description": "VAST XML lintervalidates IAB VAST 2.0–4.3 ad tags against the full spec. 118 rules. Rust/WASM core.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Alex Sekowski <alex@vastlint.org>",
7
- "homepage": "https://github.com/aleksUIX/vastlint",
7
+ "homepage": "https://vastlint.org",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/aleksUIX/vastlint.git"
11
11
  },
12
12
  "keywords": [
13
13
  "vast",
14
+ "vast-xml",
15
+ "vast-validator",
16
+ "vast-linter",
17
+ "vast-parser",
18
+ "vast-tag",
19
+ "vast-wrapper",
20
+ "simid",
21
+ "vpaid",
14
22
  "xml",
15
23
  "validator",
24
+ "linter",
16
25
  "adtech",
17
26
  "iab",
18
27
  "ctv",
28
+ "ssai",
29
+ "video",
30
+ "advertising",
31
+ "programmatic",
32
+ "creative-validation",
33
+ "mcp",
19
34
  "wasm"
20
35
  ],
21
36
  "main": "./index.cjs",
Binary file