{
  "name": "jinge",
  "version": "4.1.7",
  "description": "A small and smart web interface framework",
  "main": "./dist/jinge.prod.js",
  "module": "./dist/jinge.prod.js",
  "types": "./types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "default": "./dist/jinge.prod.js"
    },
    "./dev": {
      "types": "./types/index.d.ts",
      "default": "./dist/jinge.dev.js"
    },
    "./source": {
      "types": "./types/index.d.ts",
      "default": "./src/index.ts"
    }
  },
  "type": "module",
  "scripts": {
    "build-dev": "NODE_ENV=development vite build --mode development -c scripts/vite.config.ts",
    "build-prod": "vite build -c scripts/vite.config.ts",
    "build": "rm -rf dist types && tsc -project tsconfig.types.json && pnpm build-dev && pnpm build-prod",
    "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
    "test-cov-file": "pnpm test -- --coverage --collectCoverageFrom=src/vm/object.ts",
    "lint-fix": "eslint '**/*.{js,mjs,ts}' --fix && prettier --log-level=warn --write . !*.yaml",
    "lint": "tsc --noEmit && eslint '**/*.{js,mjs,ts}' && prettier --check . !*.yaml",
    "lint-staged": "lint-staged",
    "prepare": "husky"
  },
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jingeweb/jinge.git"
  },
  "license": "AGPL-3.0",
  "homepage": "https://github.com/jingeweb/jinge#readme",
  "bugs": {
    "url": "https://github.com/jingeweb/jinge/issues"
  },
  "keywords": [
    "mvvm",
    "web",
    "framework"
  ],
  "files": [
    "dist",
    "src",
    "types",
    "package.json",
    "tsconfig.json",
    "README_zh-cn.md",
    "README.md",
    "LICENSE"
  ],
  "author": "Yuhang Ge <abeyuhang@gmail.com>",
  "devDependencies": {
    "@eslint/js": "^9.23.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.13.13",
    "eslint": "^9.23.0",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-import-x": "^4.9.1",
    "eslint-plugin-jest": "^28.11.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "jest-environment-jsdom": "^29.7.0",
    "jest-html-reporter": "^4.1.0",
    "lint-staged": "^15.5.0",
    "prettier": "^3.5.3",
    "ts-jest": "^29.3.0",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.28.0",
    "vite": "^6.2.3"
  }
}
