{
  "name": "structurajs",
  "version": "0.12.8",
  "description": "A very fast and lightweight Typescript library to create immutable states with a mutable syntax",
  "homepage": "https://giusepperaso.github.io/structura.js/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/GiuseppeRaso/structura.js"
  },
  "keywords": [
    "immutability",
    "structural-sharing",
    "state"
  ],
  "author": "Giuseppe Raso",
  "license": "MIT",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "unpkg": "./dist/umd.js",
  "jsdelivr": "./dist/umd.js",
  "type": "module",
  "scripts": {
    "dev": "vite",
    "build": "tsc --project tsconfig.build.json && vite build && tsc --project tsconfig.build.declarations.json && cp ./dist/index.d.ts ./dist/cjs.d.ts",
    "preview": "vite preview",
    "test": "vitest --coverage",
    "test:prod": "vitest run",
    "benchmark": "node --experimental-specifier-resolution=node --loader ts-node/esm ./src/tests/benchmark",
    "benchmark:only": "npm run benchmark --skip-screenshots --skip-copy",
    "benchmark:screenshot": "npm run benchmark --skip-benchmarks --skip-copy",
    "benchmark:copy": "npm run benchmark --skip-benchmarks --skip-screenshots",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:serve": "vitepress serve docs"
  },
  "volta": {
    "node": "18.11.0"
  }
}
