{
	"name": "@huolala-tech/eval5",
	"version": "0.0.2",
	"description": "A JavaScript vm written in JavaScript. Forked from eval5",
	"main": "dist/cjs/index.js",
	"module": "dist/esm/index.js",
	"browser": "dist/umd/index.min.js",
  "types": "dist/esm/index.d.ts",
	"scripts": {
		"roll": "rollup -c",
		"test": "jest"
	},
	"repository": {
		"type": "git",
		"url": "git+https://github.com/HuolalaTech/eval5.git"
	},
	"keywords": [
		"interpreter",
		"js-interpreter",
		"eval",
		"Function",
		"vm",
		"eval5"
	],
	"files": [
		"umd",
		"lib",
		"dist",
		"*.md"
	],
	"license": "MIT",
	"bugs": {
		"url": "https://github.com/HuolalaTech/eval5/issues"
	},
	"homepage": "https://github.com/HuolalaTech/eval5#readme",
	"devDependencies": {
		"@babel/cli": "^7.8.4",
		"@babel/plugin-transform-runtime": "^7.24.3",
		"@babel/preset-env": "^7.24.4",
		"@rollup/plugin-babel": "^6.0.4",
		"@rollup/plugin-replace": "^5.0.5",
		"@rollup/plugin-terser": "^0.4.4",
		"@types/acorn": "^4.0.5",
		"@types/estree": "0.0.41",
		"@types/fs-extra": "^8.1.0",
		"@types/jest": "^24.0.25",
		"fs-extra": "^8.1.0",
		"jest": "^24.9.0",
		"npm-run-all": "^4.1.5",
		"rimraf": "^3.0.0",
		"rollup": "^4.14.1",
		"rollup-plugin-delete": "^2.0.0",
		"rollup-plugin-license": "^3.3.1",
		"rollup-plugin-typescript2": "^0.36.0",
		"typescript": "^5.4.4"
	},
	"dependencies": {
		"@babel/runtime": "^7.8.4"
	},
	"browserslist": [
		">=0.25%",
		"not dead",
		"not op_mini all",
		"not Android 4.4.3-4.4.4",
		"not ios_saf < 10",
		"not Chrome < 50",
		"firefox ESR"
	],
	"publishConfig": {
    "access": "public"
  }
}
