cadl/packages/tmlanguage-generator/package.json

46 строки
1.2 KiB
JSON

{
"name": "tmlanguage-generator",
"version": "0.5.5",
"author": "Microsoft Corporation",
"description": "Helper library to generate TextMate syntax highlighting tmLanguage files.",
"homepage": "https://github.com/microsoft/typespec/tree/main/packages/tmlanguage-generator",
"readme": "https://github.com/microsoft/typespec/blob/main/packages/tmlanguage-generator/README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/typespec.git"
},
"bugs": {
"url": "https://github.com/microsoft/typespec/issues"
},
"keywords": [
"textmate",
"tmlanguage"
],
"main": "dist/tmlanguage-generator.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "tsc -p .",
"watch": "tsc -p . --watch",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix"
},
"files": [
"dist/**",
"!dist/test/**"
],
"dependencies": {
"onigasm": "~2.2.5",
"plist": "~3.1.0"
},
"devDependencies": {
"@types/node": "~18.11.19",
"@types/plist": "~3.0.5",
"rimraf": "~5.0.5",
"typescript": "~5.4.5"
}
}