microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
b111bd337afc852ea909e72f77d34a160f80d145

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/tmlanguage-generator/package.json

40lines · modecode

1{
2 "name": "tmlanguage-generator",
3 "version": "0.2.0",
4 "author": "Microsoft Corporation",
5 "description": "Helper library to generate TextMate syntax highlighting tmLanguage files.",
6 "homepage": "https://github.com/Azure/adl/tree/master/packages/tmlanguage-generator",
7 "readme": "https://github.com/Azure/adl/blob/master/packages/tmlanguage-generator/README.md",
8 "license": "MIT",
9 "repository": {
10 "type": "git",
11 "url": "git+https://github.com/Azure/adl.git"
12 },
13 "bugs": {
14 "url": "https://github.com/Azure/adl/issues"
15 },
16 "keywords": [
17 "textmate",
18 "tmlanguage"
19 ],
20 "main": "dist/tmlanguage-generator.js",
21 "engines": {
22 "node": ">=14.0.0"
23 },
24 "scripts": {
25 "build": "tsc -p .",
26 "watch": "tsc -p . --watch"
27 },
28 "files": [
29 "dist/**",
30 "!dist/test/**"
31 ],
32 "dependencies": {
33 "onigasm": "~2.2.5",
34 "plist": "~3.0.2"
35 },
36 "devDependencies": {
37 "@types/node": "~14.0.27",
38 "@types/plist": "~3.0.2"
39 }
40}
41