fastyaml-rs 0.1.4

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/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "fastyaml-rs",
3
+ "version": "0.1.4",
4
+ "description": "Fast YAML 1.2.2 parser, linter, and parallel processor for Node.js",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/bug-ops/fast-yaml.git",
10
+ "directory": "nodejs"
11
+ },
12
+ "license": "MIT OR Apache-2.0",
13
+ "keywords": [
14
+ "yaml",
15
+ "parser",
16
+ "linter",
17
+ "rust",
18
+ "napi-rs",
19
+ "performance",
20
+ "yaml-1.2.2"
21
+ ],
22
+ "engines": {
23
+ "node": ">=20"
24
+ },
25
+ "publishConfig": {
26
+ "registry": "https://registry.npmjs.org/"
27
+ },
28
+ "napi": {
29
+ "binaryName": "fastyaml-rs",
30
+ "packageName": "fastyaml-rs",
31
+ "targets": [
32
+ "x86_64-unknown-linux-gnu",
33
+ "x86_64-unknown-linux-musl",
34
+ "x86_64-apple-darwin",
35
+ "aarch64-apple-darwin",
36
+ "x86_64-pc-windows-msvc",
37
+ "aarch64-unknown-linux-gnu",
38
+ "aarch64-pc-windows-msvc"
39
+ ]
40
+ },
41
+ "scripts": {
42
+ "build": "napi build --platform --release",
43
+ "build:debug": "napi build --platform",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "test:verbose": "vitest run --reporter=verbose",
47
+ "test:coverage": "vitest run --coverage",
48
+ "bench": "vitest bench",
49
+ "format": "prettier --write \"**/*.{ts,js,json,md}\"",
50
+ "format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
51
+ "lint": "echo 'ESLint not configured yet. Run: npm install --save-dev eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin' && exit 0",
52
+ "typecheck": "tsc --noEmit",
53
+ "prepublishOnly": "napi prepublish -t npm",
54
+ "artifacts": "napi artifacts",
55
+ "version": "napi version"
56
+ },
57
+ "devDependencies": {
58
+ "@napi-rs/cli": "^3.0.0-alpha.62",
59
+ "@types/node": "^25.0",
60
+ "@vitest/coverage-v8": "^4.0",
61
+ "prettier": "^3.4.2",
62
+ "typescript": "^5.7.2",
63
+ "vitest": "^4.0"
64
+ },
65
+ "optionalDependencies": {
66
+ "fastyaml-rs-linux-x64-gnu": "0.1.4",
67
+ "fastyaml-rs-linux-x64-musl": "0.1.4",
68
+ "fastyaml-rs-darwin-x64": "0.1.4",
69
+ "fastyaml-rs-darwin-arm64": "0.1.4",
70
+ "fastyaml-rs-win32-x64-msvc": "0.1.4",
71
+ "fastyaml-rs-linux-arm64-gnu": "0.1.4",
72
+ "fastyaml-rs-win32-arm64-msvc": "0.1.4"
73
+ }
74
+ }