{
  "name": "san-ssr",
  "version": "3.15.2",
  "description": "San server-side-render framework and utils",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "test": "test",
    "example": "example"
  },
  "files": [
    "runtime",
    "bin",
    "dist",
    "types",
    "*.json",
    "*.md"
  ],
  "bin": {
    "san-ssr": "./dist/bin/ssr.js"
  },
  "scripts": {
    "lint": "eslint '**/*.ts' '**/*.js'",
    "build": "tsc && chmod a+x dist/bin/*",
    "watch": "tsc --watch",
    "unit": "jest test/unit",
    "e2e": "jest test/e2e.spec.ts",
    "perf": "node ./test/perf/run.js cases",
    "check": "npm test && npm run lint",
    "demo": "npm run build && cd demo && node index.js",
    "test": "npm run build && jest",
    "coverage": "npm run build && jest --coverage",
    "semantic-release": "semantic-release",
    "esbuild": "esbuild `find src -name '*.ts'` --sourcemap --platform=node --target=node10 --format=cjs --outdir=dist"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/baidu/san-ssr.git"
  },
  "author": "harttle <yangjvn@126.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/baidu/san-ssr/issues"
  },
  "homepage": "https://github.com/baidu/san-ssr#readme",
  "devDependencies": {
    "@babel/plugin-transform-class-properties": "^7.22.5",
    "@babel/preset-env": "^7.11.0",
    "@babel/preset-typescript": "^7.10.4",
    "@jest/transform": "^30.2.0",
    "@types/debug": "^4.1.5",
    "@types/estree": "^1.0.8",
    "@types/jest": "^26.0.8",
    "@types/lodash": "^4.14.158",
    "@types/mkdirp": "^1.0.2",
    "@types/source-map": "^0.5.2",
    "@types/yargs": "^15.0.5",
    "@typescript-eslint/eslint-plugin": "^3.7.1",
    "@typescript-eslint/parser": "^3.7.1",
    "art-template": "^4.1.0",
    "ejs": "^3.1.3",
    "esbuild": "^0.27.0",
    "eslint": "^7.6.0",
    "eslint-config-standard": "^14.1.1",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jest": "^23.20.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.1",
    "etpl": "^3.2.0",
    "handlebars": "^4.7.6",
    "jest": "^27.0.6",
    "mkdirp": "^1.0.4",
    "mustache": "^4.0.1",
    "san": "^3.15.3",
    "san-html-cases": "^3.15.2",
    "san-ssr-target-fake-cmd": "^1.0.0",
    "san-ssr-target-fake-esm": "^1.0.0",
    "source-map-support": "^0.5.19",
    "swig-templates": "^2.0.3",
    "terser": "^5.43.1",
    "@semantic-release/changelog": "^6.0.1",
    "@semantic-release/commit-analyzer": "^9.0.2",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/npm": "^13.1.2",
    "@semantic-release/release-notes-generator": "^10.0.3",
    "semantic-release": "^25.0.2"
  },
  "dependencies": {
    "acorn": "^8.15.0",
    "acorn-walk": "^8.3.4",
    "astring": "^1.9.0",
    "camelcase": "^6.0.0",
    "chalk": "^4.1.0",
    "debug": "^4.1.1",
    "lodash": "^4.17.19",
    "ts-morph": "^27.0.2",
    "typescript": "^5.9.3",
    "yargs": "^15.4.1"
  },
  "peerDependencies": {
    "san": "^3.9.5"
  },
  "release": {
    "tagFormat": "nv${version}",
    "branches": [
      "master",
      {
        "name": "beta",
        "prerelease": true
      }
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/changelog",
      "@semantic-release/npm",
      [
        "@semantic-release/git",
        {
          "assets": [
            "package.json",
            "package-lock.json",
            "CHANGELOG.md"
          ],
          "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
        }
      ],
      "@semantic-release/github"
    ]
  }
}
