typescript-template-language-service-decorator
Version:
Framework for decorating a TypeScript language service with support for languages embedded in template strings
43 lines (42 loc) • 1.28 kB
JSON
{
"name": "typescript-template-language-service-decorator",
"version": "2.3.2",
"description": "Framework for decorating a TypeScript language service with support for languages embedded in template strings",
"keywords": [
"TypeScript",
"typescript server",
"plugin"
],
"author": "Microsoft",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/typescript-template-language-service-decorator.git"
},
"bugs": {
"url": "https://github.com/Microsoft/typescript-template-language-service-decorator/issues"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"devDependencies": {
"@types/mocha": "^8.2.1",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"chai": "^4.3.0",
"eslint": "^8.13.0",
"glob": "^7.1.3",
"mocha": "^10.2.0",
"typescript": "^5.0.0-dev.20221216"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "./node_modules/.bin/tsc -p .",
"watch:compile": "./node_modules/.bin/tsc --watch -p .",
"e2e": "./node_modules/.bin/mocha e2e/tests/**/test.js --timeout 5000",
"lint": "eslint -c .eslintrc.js --ext .ts src"
}
}