@happyvertical/json 0.74.8

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,81 @@
1
+ {
2
+ "name": "@happyvertical/json",
3
+ "version": "0.74.8",
4
+ "description": "High-performance JSON parsing and serialization with Rust SIMD acceleration and automatic fallback",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ },
13
+ "./adapters": {
14
+ "import": "./dist/adapters/index.js",
15
+ "types": "./dist/adapters/index.d.ts"
16
+ }
17
+ },
18
+ "napi": {
19
+ "name": "json-native",
20
+ "triples": {
21
+ "defaults": true,
22
+ "additional": [
23
+ "aarch64-apple-darwin",
24
+ "aarch64-unknown-linux-gnu",
25
+ "aarch64-unknown-linux-musl",
26
+ "x86_64-unknown-linux-musl"
27
+ ]
28
+ }
29
+ },
30
+ "devDependencies": {
31
+ "@napi-rs/cli": "^3.6.2",
32
+ "@types/node": "25.0.9",
33
+ "typescript": "^5.9.3",
34
+ "vite": "7.3.2",
35
+ "vite-plugin-dts": "4.5.4",
36
+ "vitest": "^4.1.5"
37
+ },
38
+ "files": [
39
+ "dist",
40
+ "README.md",
41
+ "LICENSE"
42
+ ],
43
+ "publishConfig": {
44
+ "registry": "https://registry.npmjs.org",
45
+ "access": "public"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/happyvertical/sdk.git",
50
+ "directory": "packages/json"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/happyvertical/sdk/issues"
54
+ },
55
+ "homepage": "https://github.com/happyvertical/sdk/tree/main/packages/json#readme",
56
+ "license": "MIT",
57
+ "keywords": [
58
+ "json",
59
+ "simd",
60
+ "fast",
61
+ "parse",
62
+ "stringify",
63
+ "rust",
64
+ "performance"
65
+ ],
66
+ "scripts": {
67
+ "test": "npx vitest run",
68
+ "test:watch": "npx vitest",
69
+ "test:bench": "npx vitest bench",
70
+ "build": "vite build",
71
+ "build:rust": "napi build --platform --release || echo 'Rust build skipped (toolchain not available)'",
72
+ "build:rust:debug": "napi build --platform || echo 'Rust build skipped'",
73
+ "build:full": "npm run build:rust && npm run build",
74
+ "build:watch": "vite build --watch",
75
+ "clean": "rm -rf dist *.node target",
76
+ "typecheck": "tsc --noEmit",
77
+ "lint": "biome check src/",
78
+ "artifacts": "napi artifacts",
79
+ "dev": "npm run build:watch & npm run test:watch"
80
+ }
81
+ }