Fix bin/publish: copy docs.dist from project root

Fix bin/publish: use correct .env path for rspade_system
Fix bin/publish script: prevent grep exit code 1 from terminating script

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-21 02:08:33 +00:00
commit f6fac6c4bc
79758 changed files with 10547827 additions and 0 deletions

21
node_modules/linguist-languages/LICENSE generated vendored Executable file
View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

59
node_modules/linguist-languages/README.md generated vendored Executable file
View File

@@ -0,0 +1,59 @@
# linguist-languages
[![npm](https://img.shields.io/npm/v/linguist-languages.svg)](https://www.npmjs.com/package/linguist-languages)
[![build](https://img.shields.io/github/actions/workflow/status/ikatyang/linguist-languages/test.yml)](https://github.com/ikatyang/linguist-languages/actions?query=branch%3Amain)
[Linguist `languages.yaml`](https://github.com/github/linguist/blob/main/lib/linguist/languages.yml) data in JS format.
## Install
```sh
npm install linguist-languages
```
## Usage
Import specific language data
```js
import { JavaScript as javascript, 'F*' as FStar } from 'linguist-languages'
```
Or
```js
import javascript from 'linguist-languages/data/JavaScript'
```
> [!IMPORTANT]
> Due to file system and runtime limitation, the file location is not always the same as language name.
> Eg: `F*` data is saved in `data/F_2a_.mjs`
>
> ```js
> import FStar from 'linguist-languages/data/F_2a_'
> ```
Import all languages data
```js
import * as languages from 'linguist-languages'
const javascript = languages.JavaScript
```
## Development
```sh
# lint
pnpm run lint
# build
pnpm run build
# test
pnpm run test
```
## License
MIT © [Ika](https://github.com/ikatyang)

26
node_modules/linguist-languages/ThirdPartyNoticeText.txt generated vendored Executable file
View File

@@ -0,0 +1,26 @@
This project incorporates third party material from the projects listed below.
The original copyright notice and the license under which we received such third
party material are set forth below.
================================================================================
Linguist (https://github.com/github/linguist)
Copyright (c) 2017 GitHub, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

10
node_modules/linguist-languages/data/1C_20_Enterprise.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: '1C Enterprise'
type: 'programming'
aceMode: 'text'
extensions: ['.bsl', '.os']
languageId: 0
tmScope: 'source.bsl'
color: '#814CCC'
}
export default _

10
node_modules/linguist-languages/data/1C_20_Enterprise.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: '1C Enterprise'
type: 'programming'
aceMode: 'text'
extensions: ['.bsl', '.os']
languageId: 0
tmScope: 'source.bsl'
color: '#814CCC'
}
export = _

9
node_modules/linguist-languages/data/1C_20_Enterprise.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: '1C Enterprise',
type: 'programming',
aceMode: 'text',
extensions: ['.bsl', '.os'],
languageId: 0,
tmScope: 'source.bsl',
color: '#814CCC',
}

9
node_modules/linguist-languages/data/1C_20_Enterprise.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: '1C Enterprise',
type: 'programming',
aceMode: 'text',
extensions: ['.bsl', '.os'],
languageId: 0,
tmScope: 'source.bsl',
color: '#814CCC',
}

View File

@@ -0,0 +1,10 @@
declare const _: {
name: '2-Dimensional Array'
type: 'data'
aceMode: 'text'
extensions: ['.2da']
languageId: 387204628
tmScope: 'source.2da'
color: '#38761D'
}
export default _

View File

@@ -0,0 +1,10 @@
declare const _: {
name: '2-Dimensional Array'
type: 'data'
aceMode: 'text'
extensions: ['.2da']
languageId: 387204628
tmScope: 'source.2da'
color: '#38761D'
}
export = _

View File

@@ -0,0 +1,9 @@
module.exports = {
name: '2-Dimensional Array',
type: 'data',
aceMode: 'text',
extensions: ['.2da'],
languageId: 387204628,
tmScope: 'source.2da',
color: '#38761D',
}

View File

@@ -0,0 +1,9 @@
export default {
name: '2-Dimensional Array',
type: 'data',
aceMode: 'text',
extensions: ['.2da'],
languageId: 387204628,
tmScope: 'source.2da',
color: '#38761D',
}

10
node_modules/linguist-languages/data/4D.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: '4D'
type: 'programming'
aceMode: 'text'
extensions: ['.4dm']
languageId: 577529595
tmScope: 'source.4dm'
color: '#004289'
}
export default _

10
node_modules/linguist-languages/data/4D.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: '4D'
type: 'programming'
aceMode: 'text'
extensions: ['.4dm']
languageId: 577529595
tmScope: 'source.4dm'
color: '#004289'
}
export = _

9
node_modules/linguist-languages/data/4D.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: '4D',
type: 'programming',
aceMode: 'text',
extensions: ['.4dm'],
languageId: 577529595,
tmScope: 'source.4dm',
color: '#004289',
}

9
node_modules/linguist-languages/data/4D.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: '4D',
type: 'programming',
aceMode: 'text',
extensions: ['.4dm'],
languageId: 577529595,
tmScope: 'source.4dm',
color: '#004289',
}

10
node_modules/linguist-languages/data/ABAP.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'ABAP'
type: 'programming'
aceMode: 'abap'
extensions: ['.abap']
languageId: 1
tmScope: 'source.abap'
color: '#E8274B'
}
export default _

10
node_modules/linguist-languages/data/ABAP.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'ABAP'
type: 'programming'
aceMode: 'abap'
extensions: ['.abap']
languageId: 1
tmScope: 'source.abap'
color: '#E8274B'
}
export = _

9
node_modules/linguist-languages/data/ABAP.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'ABAP',
type: 'programming',
aceMode: 'abap',
extensions: ['.abap'],
languageId: 1,
tmScope: 'source.abap',
color: '#E8274B',
}

9
node_modules/linguist-languages/data/ABAP.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'ABAP',
type: 'programming',
aceMode: 'abap',
extensions: ['.abap'],
languageId: 1,
tmScope: 'source.abap',
color: '#E8274B',
}

10
node_modules/linguist-languages/data/ABAP_20_CDS.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'ABAP CDS'
type: 'programming'
aceMode: 'text'
extensions: ['.asddls']
languageId: 452681853
tmScope: 'source.abapcds'
color: '#555e25'
}
export default _

10
node_modules/linguist-languages/data/ABAP_20_CDS.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'ABAP CDS'
type: 'programming'
aceMode: 'text'
extensions: ['.asddls']
languageId: 452681853
tmScope: 'source.abapcds'
color: '#555e25'
}
export = _

9
node_modules/linguist-languages/data/ABAP_20_CDS.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'ABAP CDS',
type: 'programming',
aceMode: 'text',
extensions: ['.asddls'],
languageId: 452681853,
tmScope: 'source.abapcds',
color: '#555e25',
}

9
node_modules/linguist-languages/data/ABAP_20_CDS.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'ABAP CDS',
type: 'programming',
aceMode: 'text',
extensions: ['.asddls'],
languageId: 452681853,
tmScope: 'source.abapcds',
color: '#555e25',
}

9
node_modules/linguist-languages/data/ABNF.d.mts generated vendored Executable file
View File

@@ -0,0 +1,9 @@
declare const _: {
name: 'ABNF'
type: 'data'
aceMode: 'text'
extensions: ['.abnf']
languageId: 429
tmScope: 'source.abnf'
}
export default _

9
node_modules/linguist-languages/data/ABNF.d.ts generated vendored Executable file
View File

@@ -0,0 +1,9 @@
declare const _: {
name: 'ABNF'
type: 'data'
aceMode: 'text'
extensions: ['.abnf']
languageId: 429
tmScope: 'source.abnf'
}
export = _

8
node_modules/linguist-languages/data/ABNF.js generated vendored Executable file
View File

@@ -0,0 +1,8 @@
module.exports = {
name: 'ABNF',
type: 'data',
aceMode: 'text',
extensions: ['.abnf'],
languageId: 429,
tmScope: 'source.abnf',
}

8
node_modules/linguist-languages/data/ABNF.mjs generated vendored Executable file
View File

@@ -0,0 +1,8 @@
export default {
name: 'ABNF',
type: 'data',
aceMode: 'text',
extensions: ['.abnf'],
languageId: 429,
tmScope: 'source.abnf',
}

13
node_modules/linguist-languages/data/AGS_20_Script.d.mts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _: {
name: 'AGS Script'
type: 'programming'
aceMode: 'c_cpp'
extensions: ['.asc', '.ash']
languageId: 2
tmScope: 'source.c++'
aliases: ['ags']
codemirrorMode: 'clike'
codemirrorMimeType: 'text/x-c++src'
color: '#B9D9FF'
}
export default _

13
node_modules/linguist-languages/data/AGS_20_Script.d.ts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _: {
name: 'AGS Script'
type: 'programming'
aceMode: 'c_cpp'
extensions: ['.asc', '.ash']
languageId: 2
tmScope: 'source.c++'
aliases: ['ags']
codemirrorMode: 'clike'
codemirrorMimeType: 'text/x-c++src'
color: '#B9D9FF'
}
export = _

12
node_modules/linguist-languages/data/AGS_20_Script.js generated vendored Executable file
View File

@@ -0,0 +1,12 @@
module.exports = {
name: 'AGS Script',
type: 'programming',
aceMode: 'c_cpp',
extensions: ['.asc', '.ash'],
languageId: 2,
tmScope: 'source.c++',
aliases: ['ags'],
codemirrorMode: 'clike',
codemirrorMimeType: 'text/x-c++src',
color: '#B9D9FF',
}

12
node_modules/linguist-languages/data/AGS_20_Script.mjs generated vendored Executable file
View File

@@ -0,0 +1,12 @@
export default {
name: 'AGS Script',
type: 'programming',
aceMode: 'c_cpp',
extensions: ['.asc', '.ash'],
languageId: 2,
tmScope: 'source.c++',
aliases: ['ags'],
codemirrorMode: 'clike',
codemirrorMimeType: 'text/x-c++src',
color: '#B9D9FF',
}

11
node_modules/linguist-languages/data/AIDL.d.mts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'AIDL'
type: 'programming'
aceMode: 'text'
extensions: ['.aidl']
languageId: 451700185
tmScope: 'source.aidl'
color: '#34EB6B'
interpreters: ['aidl']
}
export default _

11
node_modules/linguist-languages/data/AIDL.d.ts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'AIDL'
type: 'programming'
aceMode: 'text'
extensions: ['.aidl']
languageId: 451700185
tmScope: 'source.aidl'
color: '#34EB6B'
interpreters: ['aidl']
}
export = _

10
node_modules/linguist-languages/data/AIDL.js generated vendored Executable file
View File

@@ -0,0 +1,10 @@
module.exports = {
name: 'AIDL',
type: 'programming',
aceMode: 'text',
extensions: ['.aidl'],
languageId: 451700185,
tmScope: 'source.aidl',
color: '#34EB6B',
interpreters: ['aidl'],
}

10
node_modules/linguist-languages/data/AIDL.mjs generated vendored Executable file
View File

@@ -0,0 +1,10 @@
export default {
name: 'AIDL',
type: 'programming',
aceMode: 'text',
extensions: ['.aidl'],
languageId: 451700185,
tmScope: 'source.aidl',
color: '#34EB6B',
interpreters: ['aidl'],
}

10
node_modules/linguist-languages/data/AL.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'AL'
type: 'programming'
aceMode: 'text'
extensions: ['.al']
languageId: 658971832
tmScope: 'source.al'
color: '#3AA2B5'
}
export default _

10
node_modules/linguist-languages/data/AL.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'AL'
type: 'programming'
aceMode: 'text'
extensions: ['.al']
languageId: 658971832
tmScope: 'source.al'
color: '#3AA2B5'
}
export = _

9
node_modules/linguist-languages/data/AL.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'AL',
type: 'programming',
aceMode: 'text',
extensions: ['.al'],
languageId: 658971832,
tmScope: 'source.al',
color: '#3AA2B5',
}

9
node_modules/linguist-languages/data/AL.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'AL',
type: 'programming',
aceMode: 'text',
extensions: ['.al'],
languageId: 658971832,
tmScope: 'source.al',
color: '#3AA2B5',
}

10
node_modules/linguist-languages/data/AMPL.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'AMPL'
type: 'programming'
aceMode: 'text'
extensions: ['.ampl', '.mod']
languageId: 3
tmScope: 'source.ampl'
color: '#E6EFBB'
}
export default _

10
node_modules/linguist-languages/data/AMPL.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'AMPL'
type: 'programming'
aceMode: 'text'
extensions: ['.ampl', '.mod']
languageId: 3
tmScope: 'source.ampl'
color: '#E6EFBB'
}
export = _

9
node_modules/linguist-languages/data/AMPL.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'AMPL',
type: 'programming',
aceMode: 'text',
extensions: ['.ampl', '.mod'],
languageId: 3,
tmScope: 'source.ampl',
color: '#E6EFBB',
}

9
node_modules/linguist-languages/data/AMPL.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'AMPL',
type: 'programming',
aceMode: 'text',
extensions: ['.ampl', '.mod'],
languageId: 3,
tmScope: 'source.ampl',
color: '#E6EFBB',
}

10
node_modules/linguist-languages/data/ANTLR.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'ANTLR'
type: 'programming'
aceMode: 'text'
extensions: ['.g4']
languageId: 4
tmScope: 'source.antlr'
color: '#9DC3FF'
}
export default _

10
node_modules/linguist-languages/data/ANTLR.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'ANTLR'
type: 'programming'
aceMode: 'text'
extensions: ['.g4']
languageId: 4
tmScope: 'source.antlr'
color: '#9DC3FF'
}
export = _

9
node_modules/linguist-languages/data/ANTLR.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'ANTLR',
type: 'programming',
aceMode: 'text',
extensions: ['.g4'],
languageId: 4,
tmScope: 'source.antlr',
color: '#9DC3FF',
}

9
node_modules/linguist-languages/data/ANTLR.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'ANTLR',
type: 'programming',
aceMode: 'text',
extensions: ['.g4'],
languageId: 4,
tmScope: 'source.antlr',
color: '#9DC3FF',
}

10
node_modules/linguist-languages/data/API_20_Blueprint.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'API Blueprint'
type: 'markup'
aceMode: 'markdown'
extensions: ['.apib']
languageId: 5
tmScope: 'text.html.markdown.source.gfm.apib'
color: '#2ACCA8'
}
export default _

10
node_modules/linguist-languages/data/API_20_Blueprint.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'API Blueprint'
type: 'markup'
aceMode: 'markdown'
extensions: ['.apib']
languageId: 5
tmScope: 'text.html.markdown.source.gfm.apib'
color: '#2ACCA8'
}
export = _

9
node_modules/linguist-languages/data/API_20_Blueprint.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'API Blueprint',
type: 'markup',
aceMode: 'markdown',
extensions: ['.apib'],
languageId: 5,
tmScope: 'text.html.markdown.source.gfm.apib',
color: '#2ACCA8',
}

9
node_modules/linguist-languages/data/API_20_Blueprint.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'API Blueprint',
type: 'markup',
aceMode: 'markdown',
extensions: ['.apib'],
languageId: 5,
tmScope: 'text.html.markdown.source.gfm.apib',
color: '#2ACCA8',
}

13
node_modules/linguist-languages/data/APL.d.mts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _: {
name: 'APL'
type: 'programming'
aceMode: 'text'
extensions: ['.apl', '.dyalog']
languageId: 6
tmScope: 'source.apl'
codemirrorMode: 'apl'
codemirrorMimeType: 'text/apl'
color: '#5A8164'
interpreters: ['apl', 'aplx', 'dyalog']
}
export default _

13
node_modules/linguist-languages/data/APL.d.ts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _: {
name: 'APL'
type: 'programming'
aceMode: 'text'
extensions: ['.apl', '.dyalog']
languageId: 6
tmScope: 'source.apl'
codemirrorMode: 'apl'
codemirrorMimeType: 'text/apl'
color: '#5A8164'
interpreters: ['apl', 'aplx', 'dyalog']
}
export = _

12
node_modules/linguist-languages/data/APL.js generated vendored Executable file
View File

@@ -0,0 +1,12 @@
module.exports = {
name: 'APL',
type: 'programming',
aceMode: 'text',
extensions: ['.apl', '.dyalog'],
languageId: 6,
tmScope: 'source.apl',
codemirrorMode: 'apl',
codemirrorMimeType: 'text/apl',
color: '#5A8164',
interpreters: ['apl', 'aplx', 'dyalog'],
}

12
node_modules/linguist-languages/data/APL.mjs generated vendored Executable file
View File

@@ -0,0 +1,12 @@
export default {
name: 'APL',
type: 'programming',
aceMode: 'text',
extensions: ['.apl', '.dyalog'],
languageId: 6,
tmScope: 'source.apl',
codemirrorMode: 'apl',
codemirrorMimeType: 'text/apl',
color: '#5A8164',
interpreters: ['apl', 'aplx', 'dyalog'],
}

9
node_modules/linguist-languages/data/ASL.d.mts generated vendored Executable file
View File

@@ -0,0 +1,9 @@
declare const _: {
name: 'ASL'
type: 'programming'
aceMode: 'asl'
extensions: ['.asl', '.dsl']
languageId: 124996147
tmScope: 'source.asl'
}
export default _

9
node_modules/linguist-languages/data/ASL.d.ts generated vendored Executable file
View File

@@ -0,0 +1,9 @@
declare const _: {
name: 'ASL'
type: 'programming'
aceMode: 'asl'
extensions: ['.asl', '.dsl']
languageId: 124996147
tmScope: 'source.asl'
}
export = _

8
node_modules/linguist-languages/data/ASL.js generated vendored Executable file
View File

@@ -0,0 +1,8 @@
module.exports = {
name: 'ASL',
type: 'programming',
aceMode: 'asl',
extensions: ['.asl', '.dsl'],
languageId: 124996147,
tmScope: 'source.asl',
}

8
node_modules/linguist-languages/data/ASL.mjs generated vendored Executable file
View File

@@ -0,0 +1,8 @@
export default {
name: 'ASL',
type: 'programming',
aceMode: 'asl',
extensions: ['.asl', '.dsl'],
languageId: 124996147,
tmScope: 'source.asl',
}

11
node_modules/linguist-languages/data/ASN.1.d.mts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'ASN.1'
type: 'data'
aceMode: 'text'
extensions: ['.asn', '.asn1']
languageId: 7
tmScope: 'source.asn'
codemirrorMode: 'asn.1'
codemirrorMimeType: 'text/x-ttcn-asn'
}
export default _

11
node_modules/linguist-languages/data/ASN.1.d.ts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'ASN.1'
type: 'data'
aceMode: 'text'
extensions: ['.asn', '.asn1']
languageId: 7
tmScope: 'source.asn'
codemirrorMode: 'asn.1'
codemirrorMimeType: 'text/x-ttcn-asn'
}
export = _

10
node_modules/linguist-languages/data/ASN.1.js generated vendored Executable file
View File

@@ -0,0 +1,10 @@
module.exports = {
name: 'ASN.1',
type: 'data',
aceMode: 'text',
extensions: ['.asn', '.asn1'],
languageId: 7,
tmScope: 'source.asn',
codemirrorMode: 'asn.1',
codemirrorMimeType: 'text/x-ttcn-asn',
}

10
node_modules/linguist-languages/data/ASN.1.mjs generated vendored Executable file
View File

@@ -0,0 +1,10 @@
export default {
name: 'ASN.1',
type: 'data',
aceMode: 'text',
extensions: ['.asn', '.asn1'],
languageId: 7,
tmScope: 'source.asn',
codemirrorMode: 'asn.1',
codemirrorMimeType: 'text/x-ttcn-asn',
}

13
node_modules/linguist-languages/data/ASP.NET.d.mts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _: {
name: 'ASP.NET'
type: 'programming'
aceMode: 'text'
extensions: ['.asax', '.ascx', '.ashx', '.asmx', '.aspx', '.axd']
languageId: 564186416
tmScope: 'text.html.asp'
aliases: ['aspx', 'aspx-vb']
codemirrorMode: 'htmlembedded'
codemirrorMimeType: 'application/x-aspx'
color: '#9400ff'
}
export default _

13
node_modules/linguist-languages/data/ASP.NET.d.ts generated vendored Executable file
View File

@@ -0,0 +1,13 @@
declare const _: {
name: 'ASP.NET'
type: 'programming'
aceMode: 'text'
extensions: ['.asax', '.ascx', '.ashx', '.asmx', '.aspx', '.axd']
languageId: 564186416
tmScope: 'text.html.asp'
aliases: ['aspx', 'aspx-vb']
codemirrorMode: 'htmlembedded'
codemirrorMimeType: 'application/x-aspx'
color: '#9400ff'
}
export = _

12
node_modules/linguist-languages/data/ASP.NET.js generated vendored Executable file
View File

@@ -0,0 +1,12 @@
module.exports = {
name: 'ASP.NET',
type: 'programming',
aceMode: 'text',
extensions: ['.asax', '.ascx', '.ashx', '.asmx', '.aspx', '.axd'],
languageId: 564186416,
tmScope: 'text.html.asp',
aliases: ['aspx', 'aspx-vb'],
codemirrorMode: 'htmlembedded',
codemirrorMimeType: 'application/x-aspx',
color: '#9400ff',
}

12
node_modules/linguist-languages/data/ASP.NET.mjs generated vendored Executable file
View File

@@ -0,0 +1,12 @@
export default {
name: 'ASP.NET',
type: 'programming',
aceMode: 'text',
extensions: ['.asax', '.ascx', '.ashx', '.asmx', '.aspx', '.axd'],
languageId: 564186416,
tmScope: 'text.html.asp',
aliases: ['aspx', 'aspx-vb'],
codemirrorMode: 'htmlembedded',
codemirrorMimeType: 'application/x-aspx',
color: '#9400ff',
}

11
node_modules/linguist-languages/data/ATS.d.mts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'ATS'
type: 'programming'
aceMode: 'ocaml'
extensions: ['.dats', '.hats', '.sats']
languageId: 9
tmScope: 'source.ats'
aliases: ['ats2']
color: '#1ac620'
}
export default _

11
node_modules/linguist-languages/data/ATS.d.ts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'ATS'
type: 'programming'
aceMode: 'ocaml'
extensions: ['.dats', '.hats', '.sats']
languageId: 9
tmScope: 'source.ats'
aliases: ['ats2']
color: '#1ac620'
}
export = _

10
node_modules/linguist-languages/data/ATS.js generated vendored Executable file
View File

@@ -0,0 +1,10 @@
module.exports = {
name: 'ATS',
type: 'programming',
aceMode: 'ocaml',
extensions: ['.dats', '.hats', '.sats'],
languageId: 9,
tmScope: 'source.ats',
aliases: ['ats2'],
color: '#1ac620',
}

10
node_modules/linguist-languages/data/ATS.mjs generated vendored Executable file
View File

@@ -0,0 +1,10 @@
export default {
name: 'ATS',
type: 'programming',
aceMode: 'ocaml',
extensions: ['.dats', '.hats', '.sats'],
languageId: 9,
tmScope: 'source.ats',
aliases: ['ats2'],
color: '#1ac620',
}

11
node_modules/linguist-languages/data/ActionScript.d.mts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'ActionScript'
type: 'programming'
aceMode: 'actionscript'
extensions: ['.as']
languageId: 10
tmScope: 'source.actionscript.3'
aliases: ['actionscript 3', 'actionscript3', 'as3']
color: '#882B0F'
}
export default _

11
node_modules/linguist-languages/data/ActionScript.d.ts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'ActionScript'
type: 'programming'
aceMode: 'actionscript'
extensions: ['.as']
languageId: 10
tmScope: 'source.actionscript.3'
aliases: ['actionscript 3', 'actionscript3', 'as3']
color: '#882B0F'
}
export = _

10
node_modules/linguist-languages/data/ActionScript.js generated vendored Executable file
View File

@@ -0,0 +1,10 @@
module.exports = {
name: 'ActionScript',
type: 'programming',
aceMode: 'actionscript',
extensions: ['.as'],
languageId: 10,
tmScope: 'source.actionscript.3',
aliases: ['actionscript 3', 'actionscript3', 'as3'],
color: '#882B0F',
}

10
node_modules/linguist-languages/data/ActionScript.mjs generated vendored Executable file
View File

@@ -0,0 +1,10 @@
export default {
name: 'ActionScript',
type: 'programming',
aceMode: 'actionscript',
extensions: ['.as'],
languageId: 10,
tmScope: 'source.actionscript.3',
aliases: ['actionscript 3', 'actionscript3', 'as3'],
color: '#882B0F',
}

11
node_modules/linguist-languages/data/Ada.d.mts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'Ada'
type: 'programming'
aceMode: 'ada'
extensions: ['.adb', '.ada', '.ads']
languageId: 11
tmScope: 'source.ada'
aliases: ['ada95', 'ada2005']
color: '#02f88c'
}
export default _

11
node_modules/linguist-languages/data/Ada.d.ts generated vendored Executable file
View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'Ada'
type: 'programming'
aceMode: 'ada'
extensions: ['.adb', '.ada', '.ads']
languageId: 11
tmScope: 'source.ada'
aliases: ['ada95', 'ada2005']
color: '#02f88c'
}
export = _

10
node_modules/linguist-languages/data/Ada.js generated vendored Executable file
View File

@@ -0,0 +1,10 @@
module.exports = {
name: 'Ada',
type: 'programming',
aceMode: 'ada',
extensions: ['.adb', '.ada', '.ads'],
languageId: 11,
tmScope: 'source.ada',
aliases: ['ada95', 'ada2005'],
color: '#02f88c',
}

10
node_modules/linguist-languages/data/Ada.mjs generated vendored Executable file
View File

@@ -0,0 +1,10 @@
export default {
name: 'Ada',
type: 'programming',
aceMode: 'ada',
extensions: ['.adb', '.ada', '.ads'],
languageId: 11,
tmScope: 'source.ada',
aliases: ['ada95', 'ada2005'],
color: '#02f88c',
}

View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'Adblock Filter List'
type: 'data'
aceMode: 'text'
extensions: ['.txt']
languageId: 884614762
tmScope: 'text.adblock'
aliases: ['ad block filters', 'ad block', 'adb', 'adblock']
color: '#800000'
}
export default _

View File

@@ -0,0 +1,11 @@
declare const _: {
name: 'Adblock Filter List'
type: 'data'
aceMode: 'text'
extensions: ['.txt']
languageId: 884614762
tmScope: 'text.adblock'
aliases: ['ad block filters', 'ad block', 'adb', 'adblock']
color: '#800000'
}
export = _

View File

@@ -0,0 +1,10 @@
module.exports = {
name: 'Adblock Filter List',
type: 'data',
aceMode: 'text',
extensions: ['.txt'],
languageId: 884614762,
tmScope: 'text.adblock',
aliases: ['ad block filters', 'ad block', 'adb', 'adblock'],
color: '#800000',
}

View File

@@ -0,0 +1,10 @@
export default {
name: 'Adblock Filter List',
type: 'data',
aceMode: 'text',
extensions: ['.txt'],
languageId: 884614762,
tmScope: 'text.adblock',
aliases: ['ad block filters', 'ad block', 'adb', 'adblock'],
color: '#800000',
}

View File

@@ -0,0 +1,16 @@
declare const _: {
name: 'Adobe Font Metrics'
type: 'data'
aceMode: 'text'
extensions: ['.afm']
languageId: 147198098
tmScope: 'source.afm'
aliases: [
'acfm',
'adobe composite font metrics',
'adobe multiple font metrics',
'amfm',
]
color: '#fa0f00'
}
export default _

View File

@@ -0,0 +1,16 @@
declare const _: {
name: 'Adobe Font Metrics'
type: 'data'
aceMode: 'text'
extensions: ['.afm']
languageId: 147198098
tmScope: 'source.afm'
aliases: [
'acfm',
'adobe composite font metrics',
'adobe multiple font metrics',
'amfm',
]
color: '#fa0f00'
}
export = _

View File

@@ -0,0 +1,15 @@
module.exports = {
name: 'Adobe Font Metrics',
type: 'data',
aceMode: 'text',
extensions: ['.afm'],
languageId: 147198098,
tmScope: 'source.afm',
aliases: [
'acfm',
'adobe composite font metrics',
'adobe multiple font metrics',
'amfm',
],
color: '#fa0f00',
}

View File

@@ -0,0 +1,15 @@
export default {
name: 'Adobe Font Metrics',
type: 'data',
aceMode: 'text',
extensions: ['.afm'],
languageId: 147198098,
tmScope: 'source.afm',
aliases: [
'acfm',
'adobe composite font metrics',
'adobe multiple font metrics',
'amfm',
],
color: '#fa0f00',
}

10
node_modules/linguist-languages/data/Agda.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'Agda'
type: 'programming'
aceMode: 'text'
extensions: ['.agda']
languageId: 12
tmScope: 'source.agda'
color: '#315665'
}
export default _

10
node_modules/linguist-languages/data/Agda.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'Agda'
type: 'programming'
aceMode: 'text'
extensions: ['.agda']
languageId: 12
tmScope: 'source.agda'
color: '#315665'
}
export = _

9
node_modules/linguist-languages/data/Agda.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'Agda',
type: 'programming',
aceMode: 'text',
extensions: ['.agda'],
languageId: 12,
tmScope: 'source.agda',
color: '#315665',
}

9
node_modules/linguist-languages/data/Agda.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'Agda',
type: 'programming',
aceMode: 'text',
extensions: ['.agda'],
languageId: 12,
tmScope: 'source.agda',
color: '#315665',
}

10
node_modules/linguist-languages/data/Aiken.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'Aiken'
type: 'programming'
aceMode: 'text'
extensions: ['.ak']
languageId: 899409497
tmScope: 'source.aiken'
color: '#640ff8'
}
export default _

10
node_modules/linguist-languages/data/Aiken.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'Aiken'
type: 'programming'
aceMode: 'text'
extensions: ['.ak']
languageId: 899409497
tmScope: 'source.aiken'
color: '#640ff8'
}
export = _

9
node_modules/linguist-languages/data/Aiken.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'Aiken',
type: 'programming',
aceMode: 'text',
extensions: ['.ak'],
languageId: 899409497,
tmScope: 'source.aiken',
color: '#640ff8',
}

9
node_modules/linguist-languages/data/Aiken.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'Aiken',
type: 'programming',
aceMode: 'text',
extensions: ['.ak'],
languageId: 899409497,
tmScope: 'source.aiken',
color: '#640ff8',
}

10
node_modules/linguist-languages/data/Alloy.d.mts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'Alloy'
type: 'programming'
aceMode: 'text'
extensions: ['.als']
languageId: 13
tmScope: 'source.alloy'
color: '#64C800'
}
export default _

10
node_modules/linguist-languages/data/Alloy.d.ts generated vendored Executable file
View File

@@ -0,0 +1,10 @@
declare const _: {
name: 'Alloy'
type: 'programming'
aceMode: 'text'
extensions: ['.als']
languageId: 13
tmScope: 'source.alloy'
color: '#64C800'
}
export = _

9
node_modules/linguist-languages/data/Alloy.js generated vendored Executable file
View File

@@ -0,0 +1,9 @@
module.exports = {
name: 'Alloy',
type: 'programming',
aceMode: 'text',
extensions: ['.als'],
languageId: 13,
tmScope: 'source.alloy',
color: '#64C800',
}

9
node_modules/linguist-languages/data/Alloy.mjs generated vendored Executable file
View File

@@ -0,0 +1,9 @@
export default {
name: 'Alloy',
type: 'programming',
aceMode: 'text',
extensions: ['.als'],
languageId: 13,
tmScope: 'source.alloy',
color: '#64C800',
}

14
node_modules/linguist-languages/data/Alpine_20_Abuild.d.mts generated vendored Executable file
View File

@@ -0,0 +1,14 @@
declare const _: {
name: 'Alpine Abuild'
type: 'programming'
aceMode: 'sh'
filenames: ['APKBUILD']
languageId: 14
tmScope: 'source.shell'
aliases: ['abuild', 'apkbuild']
codemirrorMode: 'shell'
codemirrorMimeType: 'text/x-sh'
color: '#0D597F'
group: 'Shell'
}
export default _

Some files were not shown because too many files have changed in this diff Show More