exarch-rs 0.1.0 → 0.1.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/Cargo.toml CHANGED
@@ -8,6 +8,7 @@ rust-version.workspace = true
8
8
  license.workspace = true
9
9
  repository.workspace = true
10
10
  homepage.workspace = true
11
+ publish = false
11
12
 
12
13
  [lib]
13
14
  crate-type = ["cdylib"]
package/README.md CHANGED
@@ -34,7 +34,7 @@ bun add exarch-rs
34
34
 
35
35
  ## Requirements
36
36
 
37
- - Node.js >= 14
37
+ - Node.js >= 18
38
38
 
39
39
  ## Quick Start
40
40
 
package/biome.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
3
+ "vcs": {
4
+ "enabled": true,
5
+ "clientKind": "git",
6
+ "useIgnoreFile": false,
7
+ "defaultBranch": "main"
8
+ },
9
+ "linter": {
10
+ "enabled": true,
11
+ "rules": {
12
+ "recommended": true
13
+ }
14
+ },
15
+ "formatter": {
16
+ "enabled": true,
17
+ "indentStyle": "space",
18
+ "indentWidth": 2,
19
+ "lineWidth": 100,
20
+ "lineEnding": "lf"
21
+ },
22
+ "javascript": {
23
+ "formatter": {
24
+ "quoteStyle": "single",
25
+ "trailingCommas": "es5",
26
+ "semicolons": "always",
27
+ "arrowParentheses": "always"
28
+ }
29
+ },
30
+ "json": {
31
+ "formatter": {
32
+ "trailingCommas": "none"
33
+ }
34
+ },
35
+ "files": {
36
+ "includes": [
37
+ "**/*.js",
38
+ "**/*.json",
39
+ "!**/node_modules",
40
+ "!**/target",
41
+ "!**/*.node",
42
+ "!**/package-lock.json",
43
+ "!**/index.js",
44
+ "!**/index.d.ts"
45
+ ]
46
+ }
47
+ }
Binary file