ironmark 1.0.0 → 1.0.1

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
@@ -105,14 +105,6 @@ fn main() {
105
105
  }
106
106
  ```
107
107
 
108
- ## Benchmarks
109
-
110
- ```bash
111
- cd benchmark
112
- npm install
113
- node bench.mjs
114
- ```
115
-
116
108
  ## Troubleshooting
117
109
 
118
110
  ### `wasm32-unknown-unknown target not found` with Homebrew Rust
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ironmark",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Very fast markdown parser in Rust, consumable from JavaScript/TypeScript via WebAssembly",
5
5
  "keywords": [
6
6
  "markdown",
@@ -12,21 +12,25 @@
12
12
  "bugs": {
13
13
  "url": "https://github.com/ph1p/ironmark/issues"
14
14
  },
15
+ "license": "MIT",
15
16
  "repository": {
16
17
  "type": "git",
17
18
  "url": "https://github.com/ph1p/ironmark.git"
18
19
  },
19
- "license": "MIT",
20
- "sideEffects": false,
21
- "type": "module",
22
- "main": "wasm/index.js",
23
- "types": "wasm/index.d.ts",
24
20
  "files": [
25
21
  "wasm/pkg",
26
22
  "wasm/index.js",
27
23
  "wasm/index.d.ts",
28
24
  "README.md"
29
25
  ],
26
+ "type": "module",
27
+ "sideEffects": false,
28
+ "main": "wasm/index.js",
29
+ "types": "wasm/index.d.ts",
30
+ "publishConfig": {
31
+ "access": "public",
32
+ "registry": "https://registry.npmjs.org/"
33
+ },
30
34
  "scripts": {
31
35
  "build": "npm run build:wasm",
32
36
  "build:dev": "PATH=\"$PWD/.wasm-tools/bin:$HOME/.cargo/bin:$PATH\" cargo build -p ironmark-wasm --target wasm32-unknown-unknown && PATH=\"$PWD/.wasm-tools/bin:$HOME/.cargo/bin:$PATH\" wasm-bindgen --target bundler --out-dir wasm/pkg --out-name ironmark target/wasm32-unknown-unknown/debug/ironmark.wasm",
@@ -47,17 +51,14 @@
47
51
  "@semantic-release/github": "^12.0.6",
48
52
  "@semantic-release/npm": "^13.1.4",
49
53
  "@semantic-release/release-notes-generator": "^14.1.0",
54
+ "conventional-changelog-conventionalcommits": "^9.1.0",
50
55
  "oxfmt": "^0.35.0",
51
56
  "oxlint": "^1.50.0",
52
57
  "semantic-release": "^25.0.3"
53
58
  },
54
- "packageManager": "pnpm@10.30.2",
55
59
  "engines": {
56
60
  "node": ">=18"
57
61
  },
58
- "publishConfig": {
59
- "access": "public",
60
- "registry": "https://registry.npmjs.org/"
61
- },
62
+ "packageManager": "pnpm@10.30.2",
62
63
  "prepack": "npm run build"
63
64
  }
Binary file