mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 02:44:47 +00:00
test: specify types for path checks in interpreter tests test: add optional chaining in lexer tests to prevent errors test: add optional chaining in parser tests to prevent errors fix: clean up whitespace and formatting in AST and lexer files feat: enhance CLI with improved error handling and user prompts fix: update index and interpreter files for better type handling fix: clean up parser code for better readability and error handling build: enable minification in tsdown configuration
39 lines
788 B
JSON
39 lines
788 B
JSON
{
|
|
"name": "questlang-interpreter",
|
|
"version": "1.0.0",
|
|
"description": "TypeScript interpreter for QuestLang programming language",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"questlang",
|
|
"interpreter",
|
|
"typescript",
|
|
"language"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"bin": {
|
|
"questlang": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "vitest",
|
|
"test": "vitest",
|
|
"coverage": "vitest --coverage",
|
|
"lint": "eslint ./src",
|
|
"lint:fix": "eslint ./src --fix"
|
|
},
|
|
"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"
|
|
}
|
|
}
|