{
  "name": "@xxz_cocoscreator/framework-src",
  "version": "1.0.3",
  "description": "Cocos Creator 框架核心层（逻辑 + 基类 + bootstrap），随包发全局类型声明",
  "author": "xxz",
  "license": "SEE LICENSE IN LICENSE",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "exports": {
    ".": "./dist/index.js"
  },
  "files": [
    "dist",
    "types",
    "scripts/postinstall.mjs"
  ],
  "scripts": {
    "postinstall": "node scripts/postinstall.mjs",
    "bundle": "npx -y esbuild@0.21.5 src/index.ts --bundle --format=esm --outfile=dist/index.js --external:cc --external:cc/env --external:reflect-metadata --external:inversify --tsconfig=tsconfig.build.json --minify",
    "obfuscate": "npx -y javascript-obfuscator@4 dist/index.js --output dist/index.js --config scripts/obfuscator.json",
    "banner": "node scripts/banner.mjs",
    "build": "npm run bundle && npm run obfuscate && npm run banner",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "inversify": "^6.0.2",
    "reflect-metadata": "^0.2.2"
  },
  "devDependencies": {
    "esbuild": "^0.21.5",
    "javascript-obfuscator": "^4.1.1"
  }
}
