mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 10:54:45 +00:00
40 lines
828 B
JSON
40 lines
828 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:check": "eslint ./src",
|
|
"lint:fix": "eslint ./src --fix",
|
|
"type:check": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.11.0"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^6.2.0",
|
|
"@robonen/tsconfig": "^0.0.2",
|
|
"tsdown": "^0.16.4",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.8"
|
|
}
|
|
}
|