Regenerated json files

This commit is contained in:
Dag 2023-01-19 23:26:20 +01:00
parent 2891bfe000
commit 35da45bc3c
3 changed files with 2589 additions and 252 deletions

2685
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,58 +1,73 @@
{ {
"name": "swmf-grammar", "name": "swmf-grammar",
"displayName": "SWMF Configuration", "displayName": "SWMF Configuration",
"description": "Syntax highlights and outline view for SWMF configuration files", "description": "Syntax highlights and outline view for SWMF configuration files",
"version": "1.0.0", "version": "1.0.1",
"publisher": "svaberg", "publisher": "svaberg",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/svaberg/SWMF-grammar" "url": "https://github.com/svaberg/SWMF-grammar.git"
}, },
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"vscode": "^1.41.0" "vscode": "^1.74.0"
}, },
"categories": [ "categories": [
"Programming Languages", "Programming Languages",
"Formatters" "Formatters"
], ],
"icon": "images/icon.png", "activationEvents": [
"main": "./out/extension.js", "onLanguage:swmf-config"
"activationEvents": [ ],
"onLanguage:swmf-config" "icon": "images/icon.png",
], "main": "./out/extension.js",
"contributes": { "contributes": {
"languages": [ "languages": [
{ {
"id": "swmf-config", "id": "swmf-config",
"aliases": [ "aliases": [
"SWMF Config", "SWMF Config",
"swmf" "swmf"
],
"extensions": [
".in",
".IN"
],
"configuration": "./language-configuration.json"
}
], ],
"grammars": [ "extensions": [
{ ".in",
"language": "swmf-config", ".IN"
"scopeName": "source.swmf", ],
"path": "./syntaxes/swmf.tmLanguage.json" "configuration": "./language-configuration.json"
} }
] ],
}, "grammars": [
"scripts": { {
"vscode:prepublish": "npm run compile", "language": "swmf-config",
"compile": "tsc -p ./", "scopeName": "source.swmf",
"watch": "tsc -watch -p ./", "path": "./syntaxes/swmf.tmLanguage.json"
"pretest": "npm run compile" }
}, ]
"devDependencies": { },
"typescript": "^3.7.5", "scripts": {
"vscode-test": "^1.3.0", "vscode:prepublish": "npm run compile",
"@types/vscode": "^1.41.0" "compile": "tsc -p ./",
} "watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3",
"@vscode/test-electron": "^2.2.0"
},
"bugs": {
"url": "https://github.com/svaberg/SWMF-grammar/issues"
},
"homepage": "https://github.com/svaberg/SWMF-grammar#readme",
"author": "Dag Evensberget"
} }

View File

@ -1,16 +1,17 @@
{ {
"compilerOptions": { "compilerOptions": {
"module": "commonjs", "module": "commonjs",
"target": "es6", "target": "ES2020",
"outDir": "out", "outDir": "out",
"lib": [ "lib": [
"es6" "ES2020"
], ],
"sourceMap": true, "sourceMap": true,
"rootDir": "src" "rootDir": "src",
}, "strict": true /* enable all strict type-checking options */
"exclude": [ /* Additional Checks */
"node_modules", // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
".vscode-test" // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
] // "noUnusedParameters": true, /* Report errors on unused parameters. */
} }
}