microsoft/typespec
Publicmirrored from https://github.com/microsoft/typespecAvailable
packages/tmlanguage-generator/package.json
41lines · modecode
| 1 | { |
| 2 | "name": "@azure-tools/tmlanguage-generator", |
| 3 | "version": "0.1.3", |
| 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 | "keywords": [ |
| 9 | "textmate", |
| 10 | "tmlanguage" |
| 11 | ], |
| 12 | "license": "MIT", |
| 13 | "repository": { |
| 14 | "type": "git", |
| 15 | "url": "git+https://github.com/Azure/adl.git" |
| 16 | }, |
| 17 | "bugs": { |
| 18 | "url": "https://github.com/Azure/adl/issues" |
| 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 | "check-format": "prettier --list-different --config ../../.prettierrc.json --ignore-path ../../.prettierignore \"**/*.{ts,js,json}\"", |
| 28 | "format": "prettier --write --config ../../.prettierrc.json --ignore-path ../../.prettierignore \"**/*.{ts,js,json}\"" |
| 29 | }, |
| 30 | "files": [ |
| 31 | "dist/**" |
| 32 | ], |
| 33 | "dependencies": { |
| 34 | "onigasm": "^2.2.5", |
| 35 | "plist": "^3.0.2" |
| 36 | }, |
| 37 | "devDependencies": { |
| 38 | "@types/node": "14.0.27", |
| 39 | "@types/plist": "^3.0.2" |
| 40 | } |
| 41 | } |
| 42 | |