mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 02:44:47 +00:00
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@robonen/questlang",
|
|
"type": "module",
|
|
"version": "0.0.4",
|
|
"description": "TypeScript interpreter for QuestLang programming language",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"questlang",
|
|
"interpreter",
|
|
"typescript",
|
|
"language"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"bin": {
|
|
"questlang": "dist/cli.mjs"
|
|
},
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^7.7.0",
|
|
"@clack/prompts": "^1.1.0",
|
|
"@robonen/tsconfig": "^0.0.2",
|
|
"eslint": "^10.0.3",
|
|
"tsdown": "^0.21.2",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|