{
  "name": "@mirajs/util",
  "version": "0.0.2",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/spring-raining/mira.git",
    "directory": "packages/util"
  },
  "homepage": "https://github.com/spring-raining/mira",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "default": "./dist/index.js"
    }
  },
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "es-module-lexer": "0.4.1",
    "strip-comments": "2.0.1",
    "sucrase": "3.20.3"
  },
  "devDependencies": {
    "@types/strip-comments": "^2.0.0"
  },
  "scripts": {
    "prebuild": "shx rm -rf dist",
    "build": "run-s build:*",
    "build:rollup": "rollup -c",
    "build:types": "tsc -p tsconfig.json --emitDeclarationOnly --outDir dist",
    "dev": "rollup -c -w --no-watch.clearScreen --environment DEV",
    "test": "jest",
    "lint": "eslint . --ext .ts,tsx",
    "lint:fix": "eslint . --ext .ts,tsx --fix"
  }
}