microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
copilot/remove-deprecated-dependencies

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/extensions/agr-language/package.json

44lines · modecode

1{
2 "name": "agr-language",
3 "displayName": "Action Grammar Language",
4 "version": "0.0.1",
5 "private": true,
6 "description": "Syntax highlighting for Action Grammar (.agr) files",
7 "categories": [
8 "Programming Languages"
9 ],
10 "homepage": "https://github.com/microsoft/TypeAgent#readme",
11 "repository": {
12 "type": "git",
13 "url": "https://github.com/microsoft/TypeAgent.git",
14 "directory": "ts/extensions/agr-language"
15 },
16 "license": "MIT",
17 "author": "Microsoft",
18 "publisher": "typeagent",
19 "contributes": {
20 "grammars": [
21 {
22 "language": "agr",
23 "scopeName": "source.agr",
24 "path": "./syntaxes/agr.tmLanguage.json"
25 }
26 ],
27 "languages": [
28 {
29 "id": "agr",
30 "aliases": [
31 "Action Grammar",
32 "agr"
33 ],
34 "extensions": [
35 ".agr"
36 ],
37 "configuration": "./language-configuration.json"
38 }
39 ]
40 },
41 "engines": {
42 "vscode": "^1.90.0"
43 }
44}
45