code-languages 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -2
- package/dist/index.cjs +80 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +76 -1
- package/dist/index.js.map +1 -1
- package/dist/languages/c.cjs +20 -0
- package/dist/languages/c.cjs.map +1 -0
- package/dist/languages/c.d.cts +15 -0
- package/dist/languages/c.d.ts +15 -0
- package/dist/languages/c.js +18 -0
- package/dist/languages/c.js.map +1 -0
- package/dist/languages/css.cjs +20 -0
- package/dist/languages/css.cjs.map +1 -0
- package/dist/languages/css.d.cts +15 -0
- package/dist/languages/css.d.ts +15 -0
- package/dist/languages/css.js +18 -0
- package/dist/languages/css.js.map +1 -0
- package/dist/languages/json.cjs +20 -0
- package/dist/languages/json.cjs.map +1 -0
- package/dist/languages/json.d.cts +15 -0
- package/dist/languages/json.d.ts +15 -0
- package/dist/languages/json.js +18 -0
- package/dist/languages/json.js.map +1 -0
- package/dist/languages/markdown.cjs +20 -0
- package/dist/languages/markdown.cjs.map +1 -0
- package/dist/languages/markdown.d.cts +15 -0
- package/dist/languages/markdown.d.ts +15 -0
- package/dist/languages/markdown.js +18 -0
- package/dist/languages/markdown.js.map +1 -0
- package/dist/languages/yaml.cjs +20 -0
- package/dist/languages/yaml.cjs.map +1 -0
- package/dist/languages/yaml.d.cts +15 -0
- package/dist/languages/yaml.d.ts +15 -0
- package/dist/languages/yaml.js +18 -0
- package/dist/languages/yaml.js.map +1 -0
- package/package.json +26 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
|
|
9
9
|
Structured metadata for programming languages, packaged as a typed, tree-shakeable TypeScript library.
|
|
10
10
|
|
|
11
|
-
`code-languages` is useful when you need a small source of truth for language names, slugs, file extensions, release metadata, websites, paradigms, and logos in developer tools, docs sites, learning platforms, or editor-like interfaces. It currently includes metadata for
|
|
11
|
+
`code-languages` is useful when you need a small source of truth for language names, slugs, file extensions, release metadata, websites, paradigms, and logos in developer tools, docs sites, learning platforms, or editor-like interfaces. It currently includes metadata for 12 languages.
|
|
12
12
|
|
|
13
13
|
## Features
|
|
14
14
|
|
|
@@ -40,25 +40,40 @@ console.log(typescript.paradigms);
|
|
|
40
40
|
Import multiple languages:
|
|
41
41
|
|
|
42
42
|
```ts
|
|
43
|
+
import { c } from "code-languages/c";
|
|
44
|
+
import { css } from "code-languages/css";
|
|
43
45
|
import { javascript } from "code-languages/javascript";
|
|
44
46
|
import { java } from "code-languages/java";
|
|
45
47
|
import { html } from "code-languages/html";
|
|
48
|
+
import { markdown } from "code-languages/markdown";
|
|
46
49
|
import { python } from "code-languages/python";
|
|
50
|
+
import { json } from "code-languages/json";
|
|
51
|
+
import { yaml } from "code-languages/yaml";
|
|
47
52
|
|
|
53
|
+
console.log(c.extensions);
|
|
54
|
+
console.log(css.paradigms);
|
|
48
55
|
console.log(javascript.website);
|
|
49
56
|
console.log(java.version);
|
|
50
57
|
console.log(html.extensions);
|
|
58
|
+
console.log(markdown.website);
|
|
51
59
|
console.log(python.publishedDate);
|
|
60
|
+
console.log(json.description);
|
|
61
|
+
console.log(yaml.version);
|
|
52
62
|
```
|
|
53
63
|
|
|
54
64
|
Import from the package root when bundle size is not a concern:
|
|
55
65
|
|
|
56
66
|
```ts
|
|
57
|
-
import { go, html, java, rust, typescript } from "code-languages";
|
|
67
|
+
import { c, css, go, html, java, json, markdown, rust, typescript, yaml } from "code-languages";
|
|
58
68
|
|
|
69
|
+
console.log(c.version);
|
|
70
|
+
console.log(css.name);
|
|
59
71
|
console.log(java.name);
|
|
60
72
|
console.log(html.website);
|
|
73
|
+
console.log(markdown.extensions);
|
|
61
74
|
console.log(go.logo);
|
|
75
|
+
console.log(json.website);
|
|
76
|
+
console.log(yaml.paradigms);
|
|
62
77
|
```
|
|
63
78
|
|
|
64
79
|
## API
|
|
@@ -85,10 +100,15 @@ export interface Language {
|
|
|
85
100
|
|
|
86
101
|
| Language | Slug | Extensions | Version | Import |
|
|
87
102
|
|---|---|---|---|---|
|
|
103
|
+
| C | `c` | `.c`, `.h` | `C23` | `code-languages/c` |
|
|
88
104
|
| TypeScript | `typescript` | `.ts`, `.tsx`, `.mts`, `.cts` | `6.0` | `code-languages/typescript` |
|
|
89
105
|
| JavaScript | `javascript` | `.js`, `.mjs`, `.cjs`, `.jsx` | `ECMAScript 2025` | `code-languages/javascript` |
|
|
106
|
+
| JSON | `json` | `.json` | `RFC 8259` | `code-languages/json` |
|
|
90
107
|
| Java | `java` | `.java` | `26` | `code-languages/java` |
|
|
91
108
|
| HTML | `html` | `.html`, `.htm` | `Living Standard` | `code-languages/html` |
|
|
109
|
+
| CSS | `css` | `.css` | `Living Standard` | `code-languages/css` |
|
|
110
|
+
| Markdown | `markdown` | `.md`, `.markdown`, `.mdown`, `.mkd` | `CommonMark 0.31.2` | `code-languages/markdown` |
|
|
111
|
+
| YAML | `yaml` | `.yaml`, `.yml` | `1.2.2` | `code-languages/yaml` |
|
|
92
112
|
| Python | `python` | `.py`, `.pyw` | `3.14.4` | `code-languages/python` |
|
|
93
113
|
| Rust | `rust` | `.rs` | `1.95.0` | `code-languages/rust` |
|
|
94
114
|
| Go | `go` | `.go` | `1.26.3` | `code-languages/go` |
|
package/dist/index.cjs
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
+
// src/languages/c.ts
|
|
4
|
+
var c = {
|
|
5
|
+
name: "C",
|
|
6
|
+
slug: "c",
|
|
7
|
+
description: "A general-purpose systems programming language with low-level memory access.",
|
|
8
|
+
longDescription: "C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\n\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.",
|
|
9
|
+
publishedDate: "1972-01-01",
|
|
10
|
+
extensions: [".c", ".h"],
|
|
11
|
+
author: "Dennis Ritchie / Bell Labs",
|
|
12
|
+
website: "https://www.open-std.org/jtc1/sc22/wg14/",
|
|
13
|
+
paradigms: ["imperative", "procedural", "structured"],
|
|
14
|
+
version: "C23",
|
|
15
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
// src/languages/css.ts
|
|
19
|
+
var css = {
|
|
20
|
+
name: "CSS",
|
|
21
|
+
slug: "css",
|
|
22
|
+
description: "A stylesheet language for describing the presentation of web documents.",
|
|
23
|
+
longDescription: "CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\n\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.",
|
|
24
|
+
publishedDate: "1996-12-17",
|
|
25
|
+
extensions: [".css"],
|
|
26
|
+
author: "Hakon Wium Lie / W3C",
|
|
27
|
+
website: "https://www.w3.org/Style/CSS/",
|
|
28
|
+
paradigms: ["declarative", "stylesheet"],
|
|
29
|
+
version: "Living Standard",
|
|
30
|
+
logo: "https://www.w3.org/html/logo/downloads/CSS3_Logo.svg"
|
|
31
|
+
};
|
|
32
|
+
|
|
3
33
|
// src/languages/go.ts
|
|
4
34
|
var go = {
|
|
5
35
|
name: "Go",
|
|
@@ -60,6 +90,36 @@ var javascript = {
|
|
|
60
90
|
logo: "https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png"
|
|
61
91
|
};
|
|
62
92
|
|
|
93
|
+
// src/languages/json.ts
|
|
94
|
+
var json = {
|
|
95
|
+
name: "JSON",
|
|
96
|
+
slug: "json",
|
|
97
|
+
description: "A lightweight data interchange format based on JavaScript object syntax.",
|
|
98
|
+
longDescription: "JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\n\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.",
|
|
99
|
+
publishedDate: "2001-04-01",
|
|
100
|
+
extensions: [".json"],
|
|
101
|
+
author: "Douglas Crockford",
|
|
102
|
+
website: "https://www.json.org/json-en.html",
|
|
103
|
+
paradigms: ["data serialization", "declarative"],
|
|
104
|
+
version: "RFC 8259",
|
|
105
|
+
logo: "https://www.json.org/img/json160.gif"
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
// src/languages/markdown.ts
|
|
109
|
+
var markdown = {
|
|
110
|
+
name: "Markdown",
|
|
111
|
+
slug: "markdown",
|
|
112
|
+
description: "A lightweight markup language for writing formatted plain-text documents.",
|
|
113
|
+
longDescription: "Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\n\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.",
|
|
114
|
+
publishedDate: "2004-03-19",
|
|
115
|
+
extensions: [".md", ".markdown", ".mdown", ".mkd"],
|
|
116
|
+
author: "John Gruber / Aaron Swartz",
|
|
117
|
+
website: "https://daringfireball.net/projects/markdown/",
|
|
118
|
+
paradigms: ["declarative", "markup"],
|
|
119
|
+
version: "CommonMark 0.31.2",
|
|
120
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg"
|
|
121
|
+
};
|
|
122
|
+
|
|
63
123
|
// src/languages/python.ts
|
|
64
124
|
var python = {
|
|
65
125
|
name: "Python",
|
|
@@ -105,12 +165,32 @@ var typescript = {
|
|
|
105
165
|
logo: "https://www.typescriptlang.org/icons/icon-512x512.png"
|
|
106
166
|
};
|
|
107
167
|
|
|
168
|
+
// src/languages/yaml.ts
|
|
169
|
+
var yaml = {
|
|
170
|
+
name: "YAML",
|
|
171
|
+
slug: "yaml",
|
|
172
|
+
description: "A human-readable data serialization language used for configuration and documents.",
|
|
173
|
+
longDescription: "YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\n\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.",
|
|
174
|
+
publishedDate: "2001-05-11",
|
|
175
|
+
extensions: [".yaml", ".yml"],
|
|
176
|
+
author: "Clark Evans, Ingy dot Net, Oren Ben-Kiki",
|
|
177
|
+
website: "https://yaml.org",
|
|
178
|
+
paradigms: ["data serialization", "declarative"],
|
|
179
|
+
version: "1.2.2",
|
|
180
|
+
logo: "https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg"
|
|
181
|
+
};
|
|
182
|
+
|
|
183
|
+
exports.c = c;
|
|
184
|
+
exports.css = css;
|
|
108
185
|
exports.go = go;
|
|
109
186
|
exports.html = html;
|
|
110
187
|
exports.java = java;
|
|
111
188
|
exports.javascript = javascript;
|
|
189
|
+
exports.json = json;
|
|
190
|
+
exports.markdown = markdown;
|
|
112
191
|
exports.python = python;
|
|
113
192
|
exports.rust = rust;
|
|
114
193
|
exports.typescript = typescript;
|
|
194
|
+
exports.yaml = yaml;
|
|
115
195
|
//# sourceMappingURL=index.cjs.map
|
|
116
196
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/languages/go.ts","../src/languages/html.ts","../src/languages/java.ts","../src/languages/javascript.ts","../src/languages/python.ts","../src/languages/rust.ts","../src/languages/typescript.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const go = {\n name: \"Go\",\n slug: \"go\",\n description: \"A compiled language designed for simplicity, fast builds, and concurrency.\",\n longDescription:\n \"Go combines a small language specification, garbage collection, static typing, and built-in concurrency primitives through goroutines and channels.\\n\\nIt is commonly used for cloud services, networking tools, distributed systems, command-line applications, and infrastructure software.\",\n publishedDate: \"2012-03-28\",\n extensions: [\".go\"],\n author: \"Robert Griesemer, Rob Pike, Ken Thompson / Google\",\n website: \"https://go.dev\",\n paradigms: [\"concurrent\", \"imperative\", \"procedural\"],\n version: \"1.26.3\",\n logo: \"https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const html = {\n name: \"HTML\",\n slug: \"html\",\n description: \"A markup language for structuring web pages and browser-rendered documents.\",\n longDescription:\n \"HTML defines the structure and semantics of documents on the web, using elements and attributes to describe headings, paragraphs, links, media, forms, and application surfaces.\\n\\nIt is maintained as a living standard and works alongside CSS and JavaScript as one of the core technologies of the web platform.\",\n publishedDate: \"1993-06-01\",\n extensions: [\".html\", \".htm\"],\n author: \"Tim Berners-Lee / WHATWG\",\n website: \"https://html.spec.whatwg.org\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/HTML5_Badge.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const java = {\n name: \"Java\",\n slug: \"java\",\n description: \"A class-based, object-oriented language for portable applications and services.\",\n longDescription:\n \"Java is a statically typed language and runtime platform designed around portability, a large standard library, managed memory, and a mature virtual machine.\\n\\nIt is widely used for enterprise systems, Android applications, backend services, financial platforms, distributed systems, and long-lived production software.\",\n publishedDate: \"1995-05-23\",\n extensions: [\".java\"],\n author: \"James Gosling / Sun Microsystems\",\n website: \"https://www.java.com\",\n paradigms: [\"class-based\", \"concurrent\", \"generic\", \"imperative\", \"object-oriented\"],\n version: \"26\",\n logo: \"https://www.vectorlogo.zone/logos/java/java-icon.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const javascript = {\n name: \"JavaScript\",\n slug: \"javascript\",\n description: \"A dynamic scripting language for the web, servers, tools, and applications.\",\n longDescription:\n \"JavaScript is the primary programming language of the web platform, running natively in browsers and in server runtimes such as Node.js, Deno, and Bun.\\n\\nThe language is standardized as ECMAScript and supports event-driven, functional, object-oriented, and prototype-based programming styles.\",\n publishedDate: \"1995-12-04\",\n extensions: [\".js\", \".mjs\", \".cjs\", \".jsx\"],\n author: \"Brendan Eich / Netscape\",\n website: \"https://developer.mozilla.org/en-US/docs/Web/JavaScript\",\n paradigms: [\"event-driven\", \"functional\", \"imperative\", \"object-oriented\", \"prototype-based\"],\n version: \"ECMAScript 2025\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const python = {\n name: \"Python\",\n slug: \"python\",\n description: \"A high-level, readable language used for applications, automation, data, and AI.\",\n longDescription:\n \"Python emphasizes readability, a compact syntax, and a broad standard library, making it popular for scripting, backend services, data analysis, education, and scientific computing.\\n\\nIts ecosystem includes major frameworks and packages for web development, automation, machine learning, numerical computing, testing, and command-line tooling.\",\n publishedDate: \"1991-02-20\",\n extensions: [\".py\", \".pyw\"],\n author: \"Guido van Rossum\",\n website: \"https://www.python.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"procedural\"],\n version: \"3.14.4\",\n logo: \"https://www.python.org/static/community_logos/python-logo-only.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const rust = {\n name: \"Rust\",\n slug: \"rust\",\n description: \"A systems programming language focused on safety, speed, and concurrency.\",\n longDescription:\n \"Rust provides memory safety without a garbage collector through ownership, borrowing, lifetimes, and strong compile-time checks.\\n\\nIt is used for systems software, command-line tools, web services, embedded development, WebAssembly, and performance-critical infrastructure.\",\n publishedDate: \"2015-05-15\",\n extensions: [\".rs\"],\n author: \"Graydon Hoare / Mozilla Research\",\n website: \"https://www.rust-lang.org\",\n paradigms: [\"concurrent\", \"functional\", \"imperative\", \"procedural\"],\n version: \"1.95.0\",\n logo: \"https://www.rust-lang.org/logos/rust-logo-512x512.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const typescript = {\n name: \"TypeScript\",\n slug: \"typescript\",\n description: \"A typed superset of JavaScript that compiles to plain JavaScript.\",\n longDescription:\n \"TypeScript adds static typing, interfaces, generics, and modern tooling support to JavaScript while preserving JavaScript runtime semantics.\\n\\nIt is widely used for large web applications, libraries, server-side Node.js projects, and developer tools where maintainability and editor feedback matter.\",\n publishedDate: \"2012-10-01\",\n extensions: [\".ts\", \".tsx\", \".mts\", \".cts\"],\n author: \"Anders Hejlsberg / Microsoft\",\n website: \"https://www.typescriptlang.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"generic\"],\n version: \"6.0\",\n logo: \"https://www.typescriptlang.org/icons/icon-512x512.png\",\n} satisfies Language;\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/languages/c.ts","../src/languages/css.ts","../src/languages/go.ts","../src/languages/html.ts","../src/languages/java.ts","../src/languages/javascript.ts","../src/languages/json.ts","../src/languages/markdown.ts","../src/languages/python.ts","../src/languages/rust.ts","../src/languages/typescript.ts","../src/languages/yaml.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const c = {\n name: \"C\",\n slug: \"c\",\n description: \"A general-purpose systems programming language with low-level memory access.\",\n longDescription:\n \"C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\\n\\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.\",\n publishedDate: \"1972-01-01\",\n extensions: [\".c\", \".h\"],\n author: \"Dennis Ritchie / Bell Labs\",\n website: \"https://www.open-std.org/jtc1/sc22/wg14/\",\n paradigms: [\"imperative\", \"procedural\", \"structured\"],\n version: \"C23\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const css = {\n name: \"CSS\",\n slug: \"css\",\n description: \"A stylesheet language for describing the presentation of web documents.\",\n longDescription:\n \"CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\\n\\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.\",\n publishedDate: \"1996-12-17\",\n extensions: [\".css\"],\n author: \"Hakon Wium Lie / W3C\",\n website: \"https://www.w3.org/Style/CSS/\",\n paradigms: [\"declarative\", \"stylesheet\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/CSS3_Logo.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const go = {\n name: \"Go\",\n slug: \"go\",\n description: \"A compiled language designed for simplicity, fast builds, and concurrency.\",\n longDescription:\n \"Go combines a small language specification, garbage collection, static typing, and built-in concurrency primitives through goroutines and channels.\\n\\nIt is commonly used for cloud services, networking tools, distributed systems, command-line applications, and infrastructure software.\",\n publishedDate: \"2012-03-28\",\n extensions: [\".go\"],\n author: \"Robert Griesemer, Rob Pike, Ken Thompson / Google\",\n website: \"https://go.dev\",\n paradigms: [\"concurrent\", \"imperative\", \"procedural\"],\n version: \"1.26.3\",\n logo: \"https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const html = {\n name: \"HTML\",\n slug: \"html\",\n description: \"A markup language for structuring web pages and browser-rendered documents.\",\n longDescription:\n \"HTML defines the structure and semantics of documents on the web, using elements and attributes to describe headings, paragraphs, links, media, forms, and application surfaces.\\n\\nIt is maintained as a living standard and works alongside CSS and JavaScript as one of the core technologies of the web platform.\",\n publishedDate: \"1993-06-01\",\n extensions: [\".html\", \".htm\"],\n author: \"Tim Berners-Lee / WHATWG\",\n website: \"https://html.spec.whatwg.org\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/HTML5_Badge.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const java = {\n name: \"Java\",\n slug: \"java\",\n description: \"A class-based, object-oriented language for portable applications and services.\",\n longDescription:\n \"Java is a statically typed language and runtime platform designed around portability, a large standard library, managed memory, and a mature virtual machine.\\n\\nIt is widely used for enterprise systems, Android applications, backend services, financial platforms, distributed systems, and long-lived production software.\",\n publishedDate: \"1995-05-23\",\n extensions: [\".java\"],\n author: \"James Gosling / Sun Microsystems\",\n website: \"https://www.java.com\",\n paradigms: [\"class-based\", \"concurrent\", \"generic\", \"imperative\", \"object-oriented\"],\n version: \"26\",\n logo: \"https://www.vectorlogo.zone/logos/java/java-icon.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const javascript = {\n name: \"JavaScript\",\n slug: \"javascript\",\n description: \"A dynamic scripting language for the web, servers, tools, and applications.\",\n longDescription:\n \"JavaScript is the primary programming language of the web platform, running natively in browsers and in server runtimes such as Node.js, Deno, and Bun.\\n\\nThe language is standardized as ECMAScript and supports event-driven, functional, object-oriented, and prototype-based programming styles.\",\n publishedDate: \"1995-12-04\",\n extensions: [\".js\", \".mjs\", \".cjs\", \".jsx\"],\n author: \"Brendan Eich / Netscape\",\n website: \"https://developer.mozilla.org/en-US/docs/Web/JavaScript\",\n paradigms: [\"event-driven\", \"functional\", \"imperative\", \"object-oriented\", \"prototype-based\"],\n version: \"ECMAScript 2025\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const json = {\n name: \"JSON\",\n slug: \"json\",\n description: \"A lightweight data interchange format based on JavaScript object syntax.\",\n longDescription:\n \"JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\\n\\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.\",\n publishedDate: \"2001-04-01\",\n extensions: [\".json\"],\n author: \"Douglas Crockford\",\n website: \"https://www.json.org/json-en.html\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"RFC 8259\",\n logo: \"https://www.json.org/img/json160.gif\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const markdown = {\n name: \"Markdown\",\n slug: \"markdown\",\n description: \"A lightweight markup language for writing formatted plain-text documents.\",\n longDescription:\n \"Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\\n\\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.\",\n publishedDate: \"2004-03-19\",\n extensions: [\".md\", \".markdown\", \".mdown\", \".mkd\"],\n author: \"John Gruber / Aaron Swartz\",\n website: \"https://daringfireball.net/projects/markdown/\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"CommonMark 0.31.2\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const python = {\n name: \"Python\",\n slug: \"python\",\n description: \"A high-level, readable language used for applications, automation, data, and AI.\",\n longDescription:\n \"Python emphasizes readability, a compact syntax, and a broad standard library, making it popular for scripting, backend services, data analysis, education, and scientific computing.\\n\\nIts ecosystem includes major frameworks and packages for web development, automation, machine learning, numerical computing, testing, and command-line tooling.\",\n publishedDate: \"1991-02-20\",\n extensions: [\".py\", \".pyw\"],\n author: \"Guido van Rossum\",\n website: \"https://www.python.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"procedural\"],\n version: \"3.14.4\",\n logo: \"https://www.python.org/static/community_logos/python-logo-only.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const rust = {\n name: \"Rust\",\n slug: \"rust\",\n description: \"A systems programming language focused on safety, speed, and concurrency.\",\n longDescription:\n \"Rust provides memory safety without a garbage collector through ownership, borrowing, lifetimes, and strong compile-time checks.\\n\\nIt is used for systems software, command-line tools, web services, embedded development, WebAssembly, and performance-critical infrastructure.\",\n publishedDate: \"2015-05-15\",\n extensions: [\".rs\"],\n author: \"Graydon Hoare / Mozilla Research\",\n website: \"https://www.rust-lang.org\",\n paradigms: [\"concurrent\", \"functional\", \"imperative\", \"procedural\"],\n version: \"1.95.0\",\n logo: \"https://www.rust-lang.org/logos/rust-logo-512x512.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const typescript = {\n name: \"TypeScript\",\n slug: \"typescript\",\n description: \"A typed superset of JavaScript that compiles to plain JavaScript.\",\n longDescription:\n \"TypeScript adds static typing, interfaces, generics, and modern tooling support to JavaScript while preserving JavaScript runtime semantics.\\n\\nIt is widely used for large web applications, libraries, server-side Node.js projects, and developer tools where maintainability and editor feedback matter.\",\n publishedDate: \"2012-10-01\",\n extensions: [\".ts\", \".tsx\", \".mts\", \".cts\"],\n author: \"Anders Hejlsberg / Microsoft\",\n website: \"https://www.typescriptlang.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"generic\"],\n version: \"6.0\",\n logo: \"https://www.typescriptlang.org/icons/icon-512x512.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const yaml = {\n name: \"YAML\",\n slug: \"yaml\",\n description: \"A human-readable data serialization language used for configuration and documents.\",\n longDescription:\n \"YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\\n\\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.\",\n publishedDate: \"2001-05-11\",\n extensions: [\".yaml\", \".yml\"],\n author: \"Clark Evans, Ingy dot Net, Oren Ben-Kiki\",\n website: \"https://yaml.org\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"1.2.2\",\n logo: \"https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg\",\n} satisfies Language;\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
+
export { c } from './languages/c.cjs';
|
|
2
|
+
export { css } from './languages/css.cjs';
|
|
1
3
|
export { go } from './languages/go.cjs';
|
|
2
4
|
export { html } from './languages/html.cjs';
|
|
3
5
|
export { java } from './languages/java.cjs';
|
|
4
6
|
export { javascript } from './languages/javascript.cjs';
|
|
7
|
+
export { json } from './languages/json.cjs';
|
|
8
|
+
export { markdown } from './languages/markdown.cjs';
|
|
5
9
|
export { python } from './languages/python.cjs';
|
|
6
10
|
export { rust } from './languages/rust.cjs';
|
|
7
11
|
export { typescript } from './languages/typescript.cjs';
|
|
12
|
+
export { yaml } from './languages/yaml.cjs';
|
|
8
13
|
|
|
9
14
|
interface Language {
|
|
10
15
|
/** Display name. e.g. "TypeScript" */
|
package/dist/index.d.ts
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
|
+
export { c } from './languages/c.js';
|
|
2
|
+
export { css } from './languages/css.js';
|
|
1
3
|
export { go } from './languages/go.js';
|
|
2
4
|
export { html } from './languages/html.js';
|
|
3
5
|
export { java } from './languages/java.js';
|
|
4
6
|
export { javascript } from './languages/javascript.js';
|
|
7
|
+
export { json } from './languages/json.js';
|
|
8
|
+
export { markdown } from './languages/markdown.js';
|
|
5
9
|
export { python } from './languages/python.js';
|
|
6
10
|
export { rust } from './languages/rust.js';
|
|
7
11
|
export { typescript } from './languages/typescript.js';
|
|
12
|
+
export { yaml } from './languages/yaml.js';
|
|
8
13
|
|
|
9
14
|
interface Language {
|
|
10
15
|
/** Display name. e.g. "TypeScript" */
|
package/dist/index.js
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
// src/languages/c.ts
|
|
2
|
+
var c = {
|
|
3
|
+
name: "C",
|
|
4
|
+
slug: "c",
|
|
5
|
+
description: "A general-purpose systems programming language with low-level memory access.",
|
|
6
|
+
longDescription: "C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\n\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.",
|
|
7
|
+
publishedDate: "1972-01-01",
|
|
8
|
+
extensions: [".c", ".h"],
|
|
9
|
+
author: "Dennis Ritchie / Bell Labs",
|
|
10
|
+
website: "https://www.open-std.org/jtc1/sc22/wg14/",
|
|
11
|
+
paradigms: ["imperative", "procedural", "structured"],
|
|
12
|
+
version: "C23",
|
|
13
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
// src/languages/css.ts
|
|
17
|
+
var css = {
|
|
18
|
+
name: "CSS",
|
|
19
|
+
slug: "css",
|
|
20
|
+
description: "A stylesheet language for describing the presentation of web documents.",
|
|
21
|
+
longDescription: "CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\n\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.",
|
|
22
|
+
publishedDate: "1996-12-17",
|
|
23
|
+
extensions: [".css"],
|
|
24
|
+
author: "Hakon Wium Lie / W3C",
|
|
25
|
+
website: "https://www.w3.org/Style/CSS/",
|
|
26
|
+
paradigms: ["declarative", "stylesheet"],
|
|
27
|
+
version: "Living Standard",
|
|
28
|
+
logo: "https://www.w3.org/html/logo/downloads/CSS3_Logo.svg"
|
|
29
|
+
};
|
|
30
|
+
|
|
1
31
|
// src/languages/go.ts
|
|
2
32
|
var go = {
|
|
3
33
|
name: "Go",
|
|
@@ -58,6 +88,36 @@ var javascript = {
|
|
|
58
88
|
logo: "https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png"
|
|
59
89
|
};
|
|
60
90
|
|
|
91
|
+
// src/languages/json.ts
|
|
92
|
+
var json = {
|
|
93
|
+
name: "JSON",
|
|
94
|
+
slug: "json",
|
|
95
|
+
description: "A lightweight data interchange format based on JavaScript object syntax.",
|
|
96
|
+
longDescription: "JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\n\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.",
|
|
97
|
+
publishedDate: "2001-04-01",
|
|
98
|
+
extensions: [".json"],
|
|
99
|
+
author: "Douglas Crockford",
|
|
100
|
+
website: "https://www.json.org/json-en.html",
|
|
101
|
+
paradigms: ["data serialization", "declarative"],
|
|
102
|
+
version: "RFC 8259",
|
|
103
|
+
logo: "https://www.json.org/img/json160.gif"
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
// src/languages/markdown.ts
|
|
107
|
+
var markdown = {
|
|
108
|
+
name: "Markdown",
|
|
109
|
+
slug: "markdown",
|
|
110
|
+
description: "A lightweight markup language for writing formatted plain-text documents.",
|
|
111
|
+
longDescription: "Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\n\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.",
|
|
112
|
+
publishedDate: "2004-03-19",
|
|
113
|
+
extensions: [".md", ".markdown", ".mdown", ".mkd"],
|
|
114
|
+
author: "John Gruber / Aaron Swartz",
|
|
115
|
+
website: "https://daringfireball.net/projects/markdown/",
|
|
116
|
+
paradigms: ["declarative", "markup"],
|
|
117
|
+
version: "CommonMark 0.31.2",
|
|
118
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg"
|
|
119
|
+
};
|
|
120
|
+
|
|
61
121
|
// src/languages/python.ts
|
|
62
122
|
var python = {
|
|
63
123
|
name: "Python",
|
|
@@ -103,6 +163,21 @@ var typescript = {
|
|
|
103
163
|
logo: "https://www.typescriptlang.org/icons/icon-512x512.png"
|
|
104
164
|
};
|
|
105
165
|
|
|
106
|
-
|
|
166
|
+
// src/languages/yaml.ts
|
|
167
|
+
var yaml = {
|
|
168
|
+
name: "YAML",
|
|
169
|
+
slug: "yaml",
|
|
170
|
+
description: "A human-readable data serialization language used for configuration and documents.",
|
|
171
|
+
longDescription: "YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\n\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.",
|
|
172
|
+
publishedDate: "2001-05-11",
|
|
173
|
+
extensions: [".yaml", ".yml"],
|
|
174
|
+
author: "Clark Evans, Ingy dot Net, Oren Ben-Kiki",
|
|
175
|
+
website: "https://yaml.org",
|
|
176
|
+
paradigms: ["data serialization", "declarative"],
|
|
177
|
+
version: "1.2.2",
|
|
178
|
+
logo: "https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg"
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
export { c, css, go, html, java, javascript, json, markdown, python, rust, typescript, yaml };
|
|
107
182
|
//# sourceMappingURL=index.js.map
|
|
108
183
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/languages/go.ts","../src/languages/html.ts","../src/languages/java.ts","../src/languages/javascript.ts","../src/languages/python.ts","../src/languages/rust.ts","../src/languages/typescript.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const go = {\n name: \"Go\",\n slug: \"go\",\n description: \"A compiled language designed for simplicity, fast builds, and concurrency.\",\n longDescription:\n \"Go combines a small language specification, garbage collection, static typing, and built-in concurrency primitives through goroutines and channels.\\n\\nIt is commonly used for cloud services, networking tools, distributed systems, command-line applications, and infrastructure software.\",\n publishedDate: \"2012-03-28\",\n extensions: [\".go\"],\n author: \"Robert Griesemer, Rob Pike, Ken Thompson / Google\",\n website: \"https://go.dev\",\n paradigms: [\"concurrent\", \"imperative\", \"procedural\"],\n version: \"1.26.3\",\n logo: \"https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const html = {\n name: \"HTML\",\n slug: \"html\",\n description: \"A markup language for structuring web pages and browser-rendered documents.\",\n longDescription:\n \"HTML defines the structure and semantics of documents on the web, using elements and attributes to describe headings, paragraphs, links, media, forms, and application surfaces.\\n\\nIt is maintained as a living standard and works alongside CSS and JavaScript as one of the core technologies of the web platform.\",\n publishedDate: \"1993-06-01\",\n extensions: [\".html\", \".htm\"],\n author: \"Tim Berners-Lee / WHATWG\",\n website: \"https://html.spec.whatwg.org\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/HTML5_Badge.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const java = {\n name: \"Java\",\n slug: \"java\",\n description: \"A class-based, object-oriented language for portable applications and services.\",\n longDescription:\n \"Java is a statically typed language and runtime platform designed around portability, a large standard library, managed memory, and a mature virtual machine.\\n\\nIt is widely used for enterprise systems, Android applications, backend services, financial platforms, distributed systems, and long-lived production software.\",\n publishedDate: \"1995-05-23\",\n extensions: [\".java\"],\n author: \"James Gosling / Sun Microsystems\",\n website: \"https://www.java.com\",\n paradigms: [\"class-based\", \"concurrent\", \"generic\", \"imperative\", \"object-oriented\"],\n version: \"26\",\n logo: \"https://www.vectorlogo.zone/logos/java/java-icon.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const javascript = {\n name: \"JavaScript\",\n slug: \"javascript\",\n description: \"A dynamic scripting language for the web, servers, tools, and applications.\",\n longDescription:\n \"JavaScript is the primary programming language of the web platform, running natively in browsers and in server runtimes such as Node.js, Deno, and Bun.\\n\\nThe language is standardized as ECMAScript and supports event-driven, functional, object-oriented, and prototype-based programming styles.\",\n publishedDate: \"1995-12-04\",\n extensions: [\".js\", \".mjs\", \".cjs\", \".jsx\"],\n author: \"Brendan Eich / Netscape\",\n website: \"https://developer.mozilla.org/en-US/docs/Web/JavaScript\",\n paradigms: [\"event-driven\", \"functional\", \"imperative\", \"object-oriented\", \"prototype-based\"],\n version: \"ECMAScript 2025\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const python = {\n name: \"Python\",\n slug: \"python\",\n description: \"A high-level, readable language used for applications, automation, data, and AI.\",\n longDescription:\n \"Python emphasizes readability, a compact syntax, and a broad standard library, making it popular for scripting, backend services, data analysis, education, and scientific computing.\\n\\nIts ecosystem includes major frameworks and packages for web development, automation, machine learning, numerical computing, testing, and command-line tooling.\",\n publishedDate: \"1991-02-20\",\n extensions: [\".py\", \".pyw\"],\n author: \"Guido van Rossum\",\n website: \"https://www.python.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"procedural\"],\n version: \"3.14.4\",\n logo: \"https://www.python.org/static/community_logos/python-logo-only.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const rust = {\n name: \"Rust\",\n slug: \"rust\",\n description: \"A systems programming language focused on safety, speed, and concurrency.\",\n longDescription:\n \"Rust provides memory safety without a garbage collector through ownership, borrowing, lifetimes, and strong compile-time checks.\\n\\nIt is used for systems software, command-line tools, web services, embedded development, WebAssembly, and performance-critical infrastructure.\",\n publishedDate: \"2015-05-15\",\n extensions: [\".rs\"],\n author: \"Graydon Hoare / Mozilla Research\",\n website: \"https://www.rust-lang.org\",\n paradigms: [\"concurrent\", \"functional\", \"imperative\", \"procedural\"],\n version: \"1.95.0\",\n logo: \"https://www.rust-lang.org/logos/rust-logo-512x512.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const typescript = {\n name: \"TypeScript\",\n slug: \"typescript\",\n description: \"A typed superset of JavaScript that compiles to plain JavaScript.\",\n longDescription:\n \"TypeScript adds static typing, interfaces, generics, and modern tooling support to JavaScript while preserving JavaScript runtime semantics.\\n\\nIt is widely used for large web applications, libraries, server-side Node.js projects, and developer tools where maintainability and editor feedback matter.\",\n publishedDate: \"2012-10-01\",\n extensions: [\".ts\", \".tsx\", \".mts\", \".cts\"],\n author: \"Anders Hejlsberg / Microsoft\",\n website: \"https://www.typescriptlang.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"generic\"],\n version: \"6.0\",\n logo: \"https://www.typescriptlang.org/icons/icon-512x512.png\",\n} satisfies Language;\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/languages/c.ts","../src/languages/css.ts","../src/languages/go.ts","../src/languages/html.ts","../src/languages/java.ts","../src/languages/javascript.ts","../src/languages/json.ts","../src/languages/markdown.ts","../src/languages/python.ts","../src/languages/rust.ts","../src/languages/typescript.ts","../src/languages/yaml.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const c = {\n name: \"C\",\n slug: \"c\",\n description: \"A general-purpose systems programming language with low-level memory access.\",\n longDescription:\n \"C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\\n\\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.\",\n publishedDate: \"1972-01-01\",\n extensions: [\".c\", \".h\"],\n author: \"Dennis Ritchie / Bell Labs\",\n website: \"https://www.open-std.org/jtc1/sc22/wg14/\",\n paradigms: [\"imperative\", \"procedural\", \"structured\"],\n version: \"C23\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const css = {\n name: \"CSS\",\n slug: \"css\",\n description: \"A stylesheet language for describing the presentation of web documents.\",\n longDescription:\n \"CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\\n\\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.\",\n publishedDate: \"1996-12-17\",\n extensions: [\".css\"],\n author: \"Hakon Wium Lie / W3C\",\n website: \"https://www.w3.org/Style/CSS/\",\n paradigms: [\"declarative\", \"stylesheet\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/CSS3_Logo.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const go = {\n name: \"Go\",\n slug: \"go\",\n description: \"A compiled language designed for simplicity, fast builds, and concurrency.\",\n longDescription:\n \"Go combines a small language specification, garbage collection, static typing, and built-in concurrency primitives through goroutines and channels.\\n\\nIt is commonly used for cloud services, networking tools, distributed systems, command-line applications, and infrastructure software.\",\n publishedDate: \"2012-03-28\",\n extensions: [\".go\"],\n author: \"Robert Griesemer, Rob Pike, Ken Thompson / Google\",\n website: \"https://go.dev\",\n paradigms: [\"concurrent\", \"imperative\", \"procedural\"],\n version: \"1.26.3\",\n logo: \"https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const html = {\n name: \"HTML\",\n slug: \"html\",\n description: \"A markup language for structuring web pages and browser-rendered documents.\",\n longDescription:\n \"HTML defines the structure and semantics of documents on the web, using elements and attributes to describe headings, paragraphs, links, media, forms, and application surfaces.\\n\\nIt is maintained as a living standard and works alongside CSS and JavaScript as one of the core technologies of the web platform.\",\n publishedDate: \"1993-06-01\",\n extensions: [\".html\", \".htm\"],\n author: \"Tim Berners-Lee / WHATWG\",\n website: \"https://html.spec.whatwg.org\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/HTML5_Badge.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const java = {\n name: \"Java\",\n slug: \"java\",\n description: \"A class-based, object-oriented language for portable applications and services.\",\n longDescription:\n \"Java is a statically typed language and runtime platform designed around portability, a large standard library, managed memory, and a mature virtual machine.\\n\\nIt is widely used for enterprise systems, Android applications, backend services, financial platforms, distributed systems, and long-lived production software.\",\n publishedDate: \"1995-05-23\",\n extensions: [\".java\"],\n author: \"James Gosling / Sun Microsystems\",\n website: \"https://www.java.com\",\n paradigms: [\"class-based\", \"concurrent\", \"generic\", \"imperative\", \"object-oriented\"],\n version: \"26\",\n logo: \"https://www.vectorlogo.zone/logos/java/java-icon.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const javascript = {\n name: \"JavaScript\",\n slug: \"javascript\",\n description: \"A dynamic scripting language for the web, servers, tools, and applications.\",\n longDescription:\n \"JavaScript is the primary programming language of the web platform, running natively in browsers and in server runtimes such as Node.js, Deno, and Bun.\\n\\nThe language is standardized as ECMAScript and supports event-driven, functional, object-oriented, and prototype-based programming styles.\",\n publishedDate: \"1995-12-04\",\n extensions: [\".js\", \".mjs\", \".cjs\", \".jsx\"],\n author: \"Brendan Eich / Netscape\",\n website: \"https://developer.mozilla.org/en-US/docs/Web/JavaScript\",\n paradigms: [\"event-driven\", \"functional\", \"imperative\", \"object-oriented\", \"prototype-based\"],\n version: \"ECMAScript 2025\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const json = {\n name: \"JSON\",\n slug: \"json\",\n description: \"A lightweight data interchange format based on JavaScript object syntax.\",\n longDescription:\n \"JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\\n\\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.\",\n publishedDate: \"2001-04-01\",\n extensions: [\".json\"],\n author: \"Douglas Crockford\",\n website: \"https://www.json.org/json-en.html\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"RFC 8259\",\n logo: \"https://www.json.org/img/json160.gif\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const markdown = {\n name: \"Markdown\",\n slug: \"markdown\",\n description: \"A lightweight markup language for writing formatted plain-text documents.\",\n longDescription:\n \"Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\\n\\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.\",\n publishedDate: \"2004-03-19\",\n extensions: [\".md\", \".markdown\", \".mdown\", \".mkd\"],\n author: \"John Gruber / Aaron Swartz\",\n website: \"https://daringfireball.net/projects/markdown/\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"CommonMark 0.31.2\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const python = {\n name: \"Python\",\n slug: \"python\",\n description: \"A high-level, readable language used for applications, automation, data, and AI.\",\n longDescription:\n \"Python emphasizes readability, a compact syntax, and a broad standard library, making it popular for scripting, backend services, data analysis, education, and scientific computing.\\n\\nIts ecosystem includes major frameworks and packages for web development, automation, machine learning, numerical computing, testing, and command-line tooling.\",\n publishedDate: \"1991-02-20\",\n extensions: [\".py\", \".pyw\"],\n author: \"Guido van Rossum\",\n website: \"https://www.python.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"procedural\"],\n version: \"3.14.4\",\n logo: \"https://www.python.org/static/community_logos/python-logo-only.svg\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const rust = {\n name: \"Rust\",\n slug: \"rust\",\n description: \"A systems programming language focused on safety, speed, and concurrency.\",\n longDescription:\n \"Rust provides memory safety without a garbage collector through ownership, borrowing, lifetimes, and strong compile-time checks.\\n\\nIt is used for systems software, command-line tools, web services, embedded development, WebAssembly, and performance-critical infrastructure.\",\n publishedDate: \"2015-05-15\",\n extensions: [\".rs\"],\n author: \"Graydon Hoare / Mozilla Research\",\n website: \"https://www.rust-lang.org\",\n paradigms: [\"concurrent\", \"functional\", \"imperative\", \"procedural\"],\n version: \"1.95.0\",\n logo: \"https://www.rust-lang.org/logos/rust-logo-512x512.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const typescript = {\n name: \"TypeScript\",\n slug: \"typescript\",\n description: \"A typed superset of JavaScript that compiles to plain JavaScript.\",\n longDescription:\n \"TypeScript adds static typing, interfaces, generics, and modern tooling support to JavaScript while preserving JavaScript runtime semantics.\\n\\nIt is widely used for large web applications, libraries, server-side Node.js projects, and developer tools where maintainability and editor feedback matter.\",\n publishedDate: \"2012-10-01\",\n extensions: [\".ts\", \".tsx\", \".mts\", \".cts\"],\n author: \"Anders Hejlsberg / Microsoft\",\n website: \"https://www.typescriptlang.org\",\n paradigms: [\"object-oriented\", \"functional\", \"imperative\", \"generic\"],\n version: \"6.0\",\n logo: \"https://www.typescriptlang.org/icons/icon-512x512.png\",\n} satisfies Language;\n","import type { Language } from \"../types\";\n\nexport const yaml = {\n name: \"YAML\",\n slug: \"yaml\",\n description: \"A human-readable data serialization language used for configuration and documents.\",\n longDescription:\n \"YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\\n\\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.\",\n publishedDate: \"2001-05-11\",\n extensions: [\".yaml\", \".yml\"],\n author: \"Clark Evans, Ingy dot Net, Oren Ben-Kiki\",\n website: \"https://yaml.org\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"1.2.2\",\n logo: \"https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/c.ts
|
|
4
|
+
var c = {
|
|
5
|
+
name: "C",
|
|
6
|
+
slug: "c",
|
|
7
|
+
description: "A general-purpose systems programming language with low-level memory access.",
|
|
8
|
+
longDescription: "C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\n\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.",
|
|
9
|
+
publishedDate: "1972-01-01",
|
|
10
|
+
extensions: [".c", ".h"],
|
|
11
|
+
author: "Dennis Ritchie / Bell Labs",
|
|
12
|
+
website: "https://www.open-std.org/jtc1/sc22/wg14/",
|
|
13
|
+
paradigms: ["imperative", "procedural", "structured"],
|
|
14
|
+
version: "C23",
|
|
15
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.c = c;
|
|
19
|
+
//# sourceMappingURL=c.cjs.map
|
|
20
|
+
//# sourceMappingURL=c.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/c.ts"],"names":[],"mappings":";;;AAEO,IAAM,CAAA,GAAI;AAAA,EACf,IAAA,EAAM,GAAA;AAAA,EACN,IAAA,EAAM,GAAA;AAAA,EACN,WAAA,EAAa,8EAAA;AAAA,EACb,eAAA,EACE,4WAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,IAAA,EAAM,IAAI,CAAA;AAAA,EACvB,MAAA,EAAQ,4BAAA;AAAA,EACR,OAAA,EAAS,0CAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,YAAA,EAAc,YAAY,CAAA;AAAA,EACpD,OAAA,EAAS,KAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"c.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const c = {\n name: \"C\",\n slug: \"c\",\n description: \"A general-purpose systems programming language with low-level memory access.\",\n longDescription:\n \"C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\\n\\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.\",\n publishedDate: \"1972-01-01\",\n extensions: [\".c\", \".h\"],\n author: \"Dennis Ritchie / Bell Labs\",\n website: \"https://www.open-std.org/jtc1/sc22/wg14/\",\n paradigms: [\"imperative\", \"procedural\", \"structured\"],\n version: \"C23\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const c: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { c };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const c: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { c };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/c.ts
|
|
2
|
+
var c = {
|
|
3
|
+
name: "C",
|
|
4
|
+
slug: "c",
|
|
5
|
+
description: "A general-purpose systems programming language with low-level memory access.",
|
|
6
|
+
longDescription: "C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\n\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.",
|
|
7
|
+
publishedDate: "1972-01-01",
|
|
8
|
+
extensions: [".c", ".h"],
|
|
9
|
+
author: "Dennis Ritchie / Bell Labs",
|
|
10
|
+
website: "https://www.open-std.org/jtc1/sc22/wg14/",
|
|
11
|
+
paradigms: ["imperative", "procedural", "structured"],
|
|
12
|
+
version: "C23",
|
|
13
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { c };
|
|
17
|
+
//# sourceMappingURL=c.js.map
|
|
18
|
+
//# sourceMappingURL=c.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/c.ts"],"names":[],"mappings":";AAEO,IAAM,CAAA,GAAI;AAAA,EACf,IAAA,EAAM,GAAA;AAAA,EACN,IAAA,EAAM,GAAA;AAAA,EACN,WAAA,EAAa,8EAAA;AAAA,EACb,eAAA,EACE,4WAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,IAAA,EAAM,IAAI,CAAA;AAAA,EACvB,MAAA,EAAQ,4BAAA;AAAA,EACR,OAAA,EAAS,0CAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,YAAA,EAAc,YAAY,CAAA;AAAA,EACpD,OAAA,EAAS,KAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"c.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const c = {\n name: \"C\",\n slug: \"c\",\n description: \"A general-purpose systems programming language with low-level memory access.\",\n longDescription:\n \"C is a compiled language designed for systems programming, portable software, embedded development, operating systems, language runtimes, and performance-sensitive libraries.\\n\\nIt offers direct memory management, a small core language, and close interaction with machine-level concepts while remaining portable across many hardware and operating system targets.\",\n publishedDate: \"1972-01-01\",\n extensions: [\".c\", \".h\"],\n author: \"Dennis Ritchie / Bell Labs\",\n website: \"https://www.open-std.org/jtc1/sc22/wg14/\",\n paradigms: [\"imperative\", \"procedural\", \"structured\"],\n version: \"C23\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/1/18/C_Programming_Language.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/css.ts
|
|
4
|
+
var css = {
|
|
5
|
+
name: "CSS",
|
|
6
|
+
slug: "css",
|
|
7
|
+
description: "A stylesheet language for describing the presentation of web documents.",
|
|
8
|
+
longDescription: "CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\n\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.",
|
|
9
|
+
publishedDate: "1996-12-17",
|
|
10
|
+
extensions: [".css"],
|
|
11
|
+
author: "Hakon Wium Lie / W3C",
|
|
12
|
+
website: "https://www.w3.org/Style/CSS/",
|
|
13
|
+
paradigms: ["declarative", "stylesheet"],
|
|
14
|
+
version: "Living Standard",
|
|
15
|
+
logo: "https://www.w3.org/html/logo/downloads/CSS3_Logo.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.css = css;
|
|
19
|
+
//# sourceMappingURL=css.cjs.map
|
|
20
|
+
//# sourceMappingURL=css.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/css.ts"],"names":[],"mappings":";;;AAEO,IAAM,GAAA,GAAM;AAAA,EACjB,IAAA,EAAM,KAAA;AAAA,EACN,IAAA,EAAM,KAAA;AAAA,EACN,WAAA,EAAa,yEAAA;AAAA,EACb,eAAA,EACE,2SAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAM,CAAA;AAAA,EACnB,MAAA,EAAQ,sBAAA;AAAA,EACR,OAAA,EAAS,+BAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,YAAY,CAAA;AAAA,EACvC,OAAA,EAAS,iBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"css.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const css = {\n name: \"CSS\",\n slug: \"css\",\n description: \"A stylesheet language for describing the presentation of web documents.\",\n longDescription:\n \"CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\\n\\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.\",\n publishedDate: \"1996-12-17\",\n extensions: [\".css\"],\n author: \"Hakon Wium Lie / W3C\",\n website: \"https://www.w3.org/Style/CSS/\",\n paradigms: [\"declarative\", \"stylesheet\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/CSS3_Logo.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const css: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { css };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const css: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { css };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/css.ts
|
|
2
|
+
var css = {
|
|
3
|
+
name: "CSS",
|
|
4
|
+
slug: "css",
|
|
5
|
+
description: "A stylesheet language for describing the presentation of web documents.",
|
|
6
|
+
longDescription: "CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\n\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.",
|
|
7
|
+
publishedDate: "1996-12-17",
|
|
8
|
+
extensions: [".css"],
|
|
9
|
+
author: "Hakon Wium Lie / W3C",
|
|
10
|
+
website: "https://www.w3.org/Style/CSS/",
|
|
11
|
+
paradigms: ["declarative", "stylesheet"],
|
|
12
|
+
version: "Living Standard",
|
|
13
|
+
logo: "https://www.w3.org/html/logo/downloads/CSS3_Logo.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { css };
|
|
17
|
+
//# sourceMappingURL=css.js.map
|
|
18
|
+
//# sourceMappingURL=css.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/css.ts"],"names":[],"mappings":";AAEO,IAAM,GAAA,GAAM;AAAA,EACjB,IAAA,EAAM,KAAA;AAAA,EACN,IAAA,EAAM,KAAA;AAAA,EACN,WAAA,EAAa,yEAAA;AAAA,EACb,eAAA,EACE,2SAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,MAAM,CAAA;AAAA,EACnB,MAAA,EAAQ,sBAAA;AAAA,EACR,OAAA,EAAS,+BAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,YAAY,CAAA;AAAA,EACvC,OAAA,EAAS,iBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"css.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const css = {\n name: \"CSS\",\n slug: \"css\",\n description: \"A stylesheet language for describing the presentation of web documents.\",\n longDescription:\n \"CSS defines how structured documents are presented, including layout, typography, colors, animations, responsive behavior, and visual states.\\n\\nIt is one of the core technologies of the web platform and is maintained through modular specifications rather than a single versioned language release.\",\n publishedDate: \"1996-12-17\",\n extensions: [\".css\"],\n author: \"Hakon Wium Lie / W3C\",\n website: \"https://www.w3.org/Style/CSS/\",\n paradigms: [\"declarative\", \"stylesheet\"],\n version: \"Living Standard\",\n logo: \"https://www.w3.org/html/logo/downloads/CSS3_Logo.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/json.ts
|
|
4
|
+
var json = {
|
|
5
|
+
name: "JSON",
|
|
6
|
+
slug: "json",
|
|
7
|
+
description: "A lightweight data interchange format based on JavaScript object syntax.",
|
|
8
|
+
longDescription: "JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\n\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.",
|
|
9
|
+
publishedDate: "2001-04-01",
|
|
10
|
+
extensions: [".json"],
|
|
11
|
+
author: "Douglas Crockford",
|
|
12
|
+
website: "https://www.json.org/json-en.html",
|
|
13
|
+
paradigms: ["data serialization", "declarative"],
|
|
14
|
+
version: "RFC 8259",
|
|
15
|
+
logo: "https://www.json.org/img/json160.gif"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.json = json;
|
|
19
|
+
//# sourceMappingURL=json.cjs.map
|
|
20
|
+
//# sourceMappingURL=json.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/json.ts"],"names":[],"mappings":";;;AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,0EAAA;AAAA,EACb,eAAA,EACE,kTAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAO,CAAA;AAAA,EACpB,MAAA,EAAQ,mBAAA;AAAA,EACR,OAAA,EAAS,mCAAA;AAAA,EACT,SAAA,EAAW,CAAC,oBAAA,EAAsB,aAAa,CAAA;AAAA,EAC/C,OAAA,EAAS,UAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"json.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const json = {\n name: \"JSON\",\n slug: \"json\",\n description: \"A lightweight data interchange format based on JavaScript object syntax.\",\n longDescription:\n \"JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\\n\\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.\",\n publishedDate: \"2001-04-01\",\n extensions: [\".json\"],\n author: \"Douglas Crockford\",\n website: \"https://www.json.org/json-en.html\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"RFC 8259\",\n logo: \"https://www.json.org/img/json160.gif\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const json: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { json };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const json: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { json };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/json.ts
|
|
2
|
+
var json = {
|
|
3
|
+
name: "JSON",
|
|
4
|
+
slug: "json",
|
|
5
|
+
description: "A lightweight data interchange format based on JavaScript object syntax.",
|
|
6
|
+
longDescription: "JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\n\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.",
|
|
7
|
+
publishedDate: "2001-04-01",
|
|
8
|
+
extensions: [".json"],
|
|
9
|
+
author: "Douglas Crockford",
|
|
10
|
+
website: "https://www.json.org/json-en.html",
|
|
11
|
+
paradigms: ["data serialization", "declarative"],
|
|
12
|
+
version: "RFC 8259",
|
|
13
|
+
logo: "https://www.json.org/img/json160.gif"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { json };
|
|
17
|
+
//# sourceMappingURL=json.js.map
|
|
18
|
+
//# sourceMappingURL=json.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/json.ts"],"names":[],"mappings":";AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,0EAAA;AAAA,EACb,eAAA,EACE,kTAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAO,CAAA;AAAA,EACpB,MAAA,EAAQ,mBAAA;AAAA,EACR,OAAA,EAAS,mCAAA;AAAA,EACT,SAAA,EAAW,CAAC,oBAAA,EAAsB,aAAa,CAAA;AAAA,EAC/C,OAAA,EAAS,UAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"json.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const json = {\n name: \"JSON\",\n slug: \"json\",\n description: \"A lightweight data interchange format based on JavaScript object syntax.\",\n longDescription:\n \"JSON represents structured data with objects, arrays, strings, numbers, booleans, and null, using a compact text format that is easy for programs to parse and generate.\\n\\nIt is widely used for web APIs, configuration files, logs, package manifests, application state, and data exchange between services.\",\n publishedDate: \"2001-04-01\",\n extensions: [\".json\"],\n author: \"Douglas Crockford\",\n website: \"https://www.json.org/json-en.html\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"RFC 8259\",\n logo: \"https://www.json.org/img/json160.gif\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/markdown.ts
|
|
4
|
+
var markdown = {
|
|
5
|
+
name: "Markdown",
|
|
6
|
+
slug: "markdown",
|
|
7
|
+
description: "A lightweight markup language for writing formatted plain-text documents.",
|
|
8
|
+
longDescription: "Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\n\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.",
|
|
9
|
+
publishedDate: "2004-03-19",
|
|
10
|
+
extensions: [".md", ".markdown", ".mdown", ".mkd"],
|
|
11
|
+
author: "John Gruber / Aaron Swartz",
|
|
12
|
+
website: "https://daringfireball.net/projects/markdown/",
|
|
13
|
+
paradigms: ["declarative", "markup"],
|
|
14
|
+
version: "CommonMark 0.31.2",
|
|
15
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.markdown = markdown;
|
|
19
|
+
//# sourceMappingURL=markdown.cjs.map
|
|
20
|
+
//# sourceMappingURL=markdown.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/markdown.ts"],"names":[],"mappings":";;;AAEO,IAAM,QAAA,GAAW;AAAA,EACtB,IAAA,EAAM,UAAA;AAAA,EACN,IAAA,EAAM,UAAA;AAAA,EACN,WAAA,EAAa,2EAAA;AAAA,EACb,eAAA,EACE,mSAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,WAAA,EAAa,UAAU,MAAM,CAAA;AAAA,EACjD,MAAA,EAAQ,4BAAA;AAAA,EACR,OAAA,EAAS,+CAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,QAAQ,CAAA;AAAA,EACnC,OAAA,EAAS,mBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"markdown.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const markdown = {\n name: \"Markdown\",\n slug: \"markdown\",\n description: \"A lightweight markup language for writing formatted plain-text documents.\",\n longDescription:\n \"Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\\n\\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.\",\n publishedDate: \"2004-03-19\",\n extensions: [\".md\", \".markdown\", \".mdown\", \".mkd\"],\n author: \"John Gruber / Aaron Swartz\",\n website: \"https://daringfireball.net/projects/markdown/\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"CommonMark 0.31.2\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const markdown: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { markdown };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const markdown: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { markdown };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/markdown.ts
|
|
2
|
+
var markdown = {
|
|
3
|
+
name: "Markdown",
|
|
4
|
+
slug: "markdown",
|
|
5
|
+
description: "A lightweight markup language for writing formatted plain-text documents.",
|
|
6
|
+
longDescription: "Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\n\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.",
|
|
7
|
+
publishedDate: "2004-03-19",
|
|
8
|
+
extensions: [".md", ".markdown", ".mdown", ".mkd"],
|
|
9
|
+
author: "John Gruber / Aaron Swartz",
|
|
10
|
+
website: "https://daringfireball.net/projects/markdown/",
|
|
11
|
+
paradigms: ["declarative", "markup"],
|
|
12
|
+
version: "CommonMark 0.31.2",
|
|
13
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { markdown };
|
|
17
|
+
//# sourceMappingURL=markdown.js.map
|
|
18
|
+
//# sourceMappingURL=markdown.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/markdown.ts"],"names":[],"mappings":";AAEO,IAAM,QAAA,GAAW;AAAA,EACtB,IAAA,EAAM,UAAA;AAAA,EACN,IAAA,EAAM,UAAA;AAAA,EACN,WAAA,EAAa,2EAAA;AAAA,EACb,eAAA,EACE,mSAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,WAAA,EAAa,UAAU,MAAM,CAAA;AAAA,EACjD,MAAA,EAAQ,4BAAA;AAAA,EACR,OAAA,EAAS,+CAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,QAAQ,CAAA;AAAA,EACnC,OAAA,EAAS,mBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"markdown.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const markdown = {\n name: \"Markdown\",\n slug: \"markdown\",\n description: \"A lightweight markup language for writing formatted plain-text documents.\",\n longDescription:\n \"Markdown uses plain-text syntax to represent headings, lists, links, emphasis, code blocks, tables, and other common document structures.\\n\\nIt is widely used for README files, documentation, static sites, notes, issue trackers, and publishing workflows where readable source text matters.\",\n publishedDate: \"2004-03-19\",\n extensions: [\".md\", \".markdown\", \".mdown\", \".mkd\"],\n author: \"John Gruber / Aaron Swartz\",\n website: \"https://daringfireball.net/projects/markdown/\",\n paradigms: [\"declarative\", \"markup\"],\n version: \"CommonMark 0.31.2\",\n logo: \"https://upload.wikimedia.org/wikipedia/commons/4/48/Markdown-mark.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/yaml.ts
|
|
4
|
+
var yaml = {
|
|
5
|
+
name: "YAML",
|
|
6
|
+
slug: "yaml",
|
|
7
|
+
description: "A human-readable data serialization language used for configuration and documents.",
|
|
8
|
+
longDescription: "YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\n\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.",
|
|
9
|
+
publishedDate: "2001-05-11",
|
|
10
|
+
extensions: [".yaml", ".yml"],
|
|
11
|
+
author: "Clark Evans, Ingy dot Net, Oren Ben-Kiki",
|
|
12
|
+
website: "https://yaml.org",
|
|
13
|
+
paradigms: ["data serialization", "declarative"],
|
|
14
|
+
version: "1.2.2",
|
|
15
|
+
logo: "https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.yaml = yaml;
|
|
19
|
+
//# sourceMappingURL=yaml.cjs.map
|
|
20
|
+
//# sourceMappingURL=yaml.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/yaml.ts"],"names":[],"mappings":";;;AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,oFAAA;AAAA,EACb,eAAA,EACE,kUAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,EAC5B,MAAA,EAAQ,0CAAA;AAAA,EACR,OAAA,EAAS,kBAAA;AAAA,EACT,SAAA,EAAW,CAAC,oBAAA,EAAsB,aAAa,CAAA;AAAA,EAC/C,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"yaml.cjs","sourcesContent":["import type { Language } from \"../types\";\n\nexport const yaml = {\n name: \"YAML\",\n slug: \"yaml\",\n description: \"A human-readable data serialization language used for configuration and documents.\",\n longDescription:\n \"YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\\n\\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.\",\n publishedDate: \"2001-05-11\",\n extensions: [\".yaml\", \".yml\"],\n author: \"Clark Evans, Ingy dot Net, Oren Ben-Kiki\",\n website: \"https://yaml.org\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"1.2.2\",\n logo: \"https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg\",\n} satisfies Language;\n"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const yaml: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { yaml };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const yaml: {
|
|
2
|
+
name: string;
|
|
3
|
+
slug: string;
|
|
4
|
+
description: string;
|
|
5
|
+
longDescription: string;
|
|
6
|
+
publishedDate: string;
|
|
7
|
+
extensions: string[];
|
|
8
|
+
author: string;
|
|
9
|
+
website: string;
|
|
10
|
+
paradigms: string[];
|
|
11
|
+
version: string;
|
|
12
|
+
logo: string;
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
export { yaml };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/yaml.ts
|
|
2
|
+
var yaml = {
|
|
3
|
+
name: "YAML",
|
|
4
|
+
slug: "yaml",
|
|
5
|
+
description: "A human-readable data serialization language used for configuration and documents.",
|
|
6
|
+
longDescription: "YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\n\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.",
|
|
7
|
+
publishedDate: "2001-05-11",
|
|
8
|
+
extensions: [".yaml", ".yml"],
|
|
9
|
+
author: "Clark Evans, Ingy dot Net, Oren Ben-Kiki",
|
|
10
|
+
website: "https://yaml.org",
|
|
11
|
+
paradigms: ["data serialization", "declarative"],
|
|
12
|
+
version: "1.2.2",
|
|
13
|
+
logo: "https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { yaml };
|
|
17
|
+
//# sourceMappingURL=yaml.js.map
|
|
18
|
+
//# sourceMappingURL=yaml.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/yaml.ts"],"names":[],"mappings":";AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,oFAAA;AAAA,EACb,eAAA,EACE,kUAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,EAC5B,MAAA,EAAQ,0CAAA;AAAA,EACR,OAAA,EAAS,kBAAA;AAAA,EACT,SAAA,EAAW,CAAC,oBAAA,EAAsB,aAAa,CAAA;AAAA,EAC/C,OAAA,EAAS,OAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"yaml.js","sourcesContent":["import type { Language } from \"../types\";\n\nexport const yaml = {\n name: \"YAML\",\n slug: \"yaml\",\n description: \"A human-readable data serialization language used for configuration and documents.\",\n longDescription:\n \"YAML represents structured data with indentation-based syntax, supporting mappings, sequences, scalars, anchors, aliases, and multiple documents in a stream.\\n\\nIt is widely used for configuration files, CI/CD workflows, infrastructure definitions, application settings, and data exchange where readability is important.\",\n publishedDate: \"2001-05-11\",\n extensions: [\".yaml\", \".yml\"],\n author: \"Clark Evans, Ingy dot Net, Oren Ben-Kiki\",\n website: \"https://yaml.org\",\n paradigms: [\"data serialization\", \"declarative\"],\n version: \"1.2.2\",\n logo: \"https://yaml.org/spec/1.2.2/ext/img/yaml-logo.svg\",\n} satisfies Language;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-languages",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Structured metadata for programming languages.",
|
|
5
5
|
"homepage": "https://github.com/ElJijuna/code-languages#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"import": "./dist/index.js",
|
|
27
27
|
"require": "./dist/index.cjs"
|
|
28
28
|
},
|
|
29
|
+
"./c": {
|
|
30
|
+
"types": "./dist/languages/c.d.ts",
|
|
31
|
+
"import": "./dist/languages/c.js",
|
|
32
|
+
"require": "./dist/languages/c.cjs"
|
|
33
|
+
},
|
|
29
34
|
"./typescript": {
|
|
30
35
|
"types": "./dist/languages/typescript.d.ts",
|
|
31
36
|
"import": "./dist/languages/typescript.js",
|
|
@@ -36,6 +41,11 @@
|
|
|
36
41
|
"import": "./dist/languages/javascript.js",
|
|
37
42
|
"require": "./dist/languages/javascript.cjs"
|
|
38
43
|
},
|
|
44
|
+
"./json": {
|
|
45
|
+
"types": "./dist/languages/json.d.ts",
|
|
46
|
+
"import": "./dist/languages/json.js",
|
|
47
|
+
"require": "./dist/languages/json.cjs"
|
|
48
|
+
},
|
|
39
49
|
"./java": {
|
|
40
50
|
"types": "./dist/languages/java.d.ts",
|
|
41
51
|
"import": "./dist/languages/java.js",
|
|
@@ -56,10 +66,25 @@
|
|
|
56
66
|
"import": "./dist/languages/go.js",
|
|
57
67
|
"require": "./dist/languages/go.cjs"
|
|
58
68
|
},
|
|
69
|
+
"./css": {
|
|
70
|
+
"types": "./dist/languages/css.d.ts",
|
|
71
|
+
"import": "./dist/languages/css.js",
|
|
72
|
+
"require": "./dist/languages/css.cjs"
|
|
73
|
+
},
|
|
59
74
|
"./html": {
|
|
60
75
|
"types": "./dist/languages/html.d.ts",
|
|
61
76
|
"import": "./dist/languages/html.js",
|
|
62
77
|
"require": "./dist/languages/html.cjs"
|
|
78
|
+
},
|
|
79
|
+
"./markdown": {
|
|
80
|
+
"types": "./dist/languages/markdown.d.ts",
|
|
81
|
+
"import": "./dist/languages/markdown.js",
|
|
82
|
+
"require": "./dist/languages/markdown.cjs"
|
|
83
|
+
},
|
|
84
|
+
"./yaml": {
|
|
85
|
+
"types": "./dist/languages/yaml.d.ts",
|
|
86
|
+
"import": "./dist/languages/yaml.js",
|
|
87
|
+
"require": "./dist/languages/yaml.cjs"
|
|
63
88
|
}
|
|
64
89
|
},
|
|
65
90
|
"files": [
|