{ "name": "@extollo/cc", "version": "0.6.0", "description": "Early-phase compiler for Extollo projects", "main": "lib/index.js", "types": "lib/index.d.ts", "directories": { "lib": "lib" }, "scripts": { "build": "pnpm run lint && rimraf lib && tsc", "app": "pnpm run build && node lib/index.js", "prepare": "pnpm run build", "lint": "eslint . --ext .ts", "lint:fix": "eslint --fix . --ext .ts" }, "files": [ "lib/**/*" ], "bin": { "excc": "lib/excc.js" }, "prepare": "pnpm run build", "postversion": "git push && git push --tags", "repository": { "type": "git", "url": "https://code.garrettmills.dev/extollo/cc" }, "author": "Garrett Mills ", "license": "MIT", "devDependencies": { "@typescript-eslint/eslint-plugin": "^5.4.0", "@typescript-eslint/parser": "^5.4.0", "eslint": "^8.2.0" }, "dependencies": { "@types/argparse": "^2.0.10", "@types/cli-color": "^2.0.2", "@types/fs-extra": "^9.0.13", "@types/mkdirp": "^1.0.2", "@types/rimraf": "^3.0.2", "@types/uuid": "^8.3.3", "argparse": "^2.0.1", "cli-color": "^2.0.1", "dotenv": "^10.0.0", "fs-extra": "^10.0.0", "mkdirp": "^1.0.4", "rfdc": "^1.3.0", "rimraf": "^3.0.2", "ts-expose-internals": "^4.5.4", "ts-node": "^10.4.0", "ts-patch": "^2.0.1", "ts-to-zod": "^1.8.0", "typescript": "^4.5.2", "uuid": "^8.3.2" } }