{ "name": "questlang", "type": "module", "version": "1.0.0", "description": "TypeScript interpreter for QuestLang programming language", "license": "MIT", "keywords": [ "questlang", "interpreter", "typescript", "language" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } }, "bin": { "questlang": "dist/cli.js" }, "files": [ "README.md", "dist", "examples" ], "scripts": { "build": "tsdown", "dev": "vitest", "test": "vitest run", "coverage": "vitest --coverage", "lint:check": "eslint ./src", "lint:fix": "eslint ./src --fix", "type:check": "tsc --noEmit", "prepublish": "pnpm run build && pnpm run type:check && pnpm run test" }, "dependencies": { "@clack/prompts": "^0.11.0" }, "devDependencies": { "@antfu/eslint-config": "^5.2.1", "@robonen/tsconfig": "^0.0.2", "tsdown": "^0.14.2", "typescript": "^5.9.2", "vitest": "^3.2.4" } }