mirror of
https://github.com/robonen/questlang.git
synced 2026-03-20 02:44:47 +00:00
feat: init
This commit is contained in:
39
package.json
Normal file
39
package.json
Normal file
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"name": "questlang-interpreter",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"description": "TypeScript interpreter for QuestLang programming language",
|
||||
"keywords": [
|
||||
"questlang",
|
||||
"interpreter",
|
||||
"typescript",
|
||||
"language"
|
||||
],
|
||||
"type": "module",
|
||||
"bin": {
|
||||
"questlang": "dist/cli.js"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "tsdown",
|
||||
"dev": "vitest",
|
||||
"test": "vitest",
|
||||
"coverage": "vitest --coverage",
|
||||
"lint": "eslint ./src",
|
||||
"lint:fix": "eslint ./src --fix"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^5.2.1",
|
||||
"@robonen/tsconfig": "^0.0.2",
|
||||
"tsdown": "^0.14.2",
|
||||
"typescript": "^5.9.2",
|
||||
"vitest": "^3.2.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"@clack/prompts": "^0.11.0"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./dist/index.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user