@maverick-js/compiler
Version:
Maverick toolchain including the analyzer and compiler.
74 lines (73 loc) • 1.76 kB
JSON
{
"name": "@maverick-js/compiler",
"description": "Maverick toolchain including the analyzer and compiler.",
"license": "MIT",
"version": "0.37.0",
"type": "module",
"types": "dist/types/index.d.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist/",
"cli.js",
"*.d.ts"
],
"engines": {
"node": ">=16"
},
"bin": {
"maverick": "cli.js"
},
"contributors": [
"Rahim Alwer <rahim.alwer@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/maverick-js/maverick.git",
"directory": "packages/compiler"
},
"bugs": {
"url": "https://github.com/maverick-js/maverick/issues"
},
"scripts": {
"dev": "pnpm run build --watch",
"build": "rimraf dist && tsup && pnpm types",
"types": "tsc -p tsconfig.build.json",
"format": "prettier src --write --loglevel warn",
"test": "vitest --run",
"test:watch": "vitest --watch"
},
"dependencies": {
"@dprint/formatter": "^0.2.0",
"@dprint/typescript": "^0.84.0",
"@rollup/pluginutils": "^5.0.0",
"globby": "^13.1.2",
"html-entities": "^2.3.3",
"kleur": "^4.1.5",
"lru-cache": "^9.0.0",
"magic-string": "^0.30.0",
"pathe": "^1.1.0",
"unplugin": "^1.3.1",
"yargs": "^17.7.0"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@types/yargs": "^17.0.13",
"esbuild": "^0.17.0",
"jsdom": "^21.1.0",
"rimraf": "^3.0.2",
"tsup": "^6.7.0",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vitest": "^0.30.0"
},
"exports": {
".": "./dist/index.js",
"./analyze": "./dist/analyze.js",
"./cli.js": "./cli.js",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
}
}