code-languages 0.0.1 → 1.0.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 +120 -0
- package/dist/index.cjs +116 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +34 -0
- package/dist/index.d.ts +34 -0
- package/dist/index.js +108 -0
- package/dist/index.js.map +1 -0
- package/dist/languages/go.cjs +20 -0
- package/dist/languages/go.cjs.map +1 -0
- package/dist/languages/go.d.cts +15 -0
- package/dist/languages/go.d.ts +15 -0
- package/dist/languages/go.js +18 -0
- package/dist/languages/go.js.map +1 -0
- package/dist/languages/html.cjs +20 -0
- package/dist/languages/html.cjs.map +1 -0
- package/dist/languages/html.d.cts +15 -0
- package/dist/languages/html.d.ts +15 -0
- package/dist/languages/html.js +18 -0
- package/dist/languages/html.js.map +1 -0
- package/dist/languages/java.cjs +20 -0
- package/dist/languages/java.cjs.map +1 -0
- package/dist/languages/java.d.cts +15 -0
- package/dist/languages/java.d.ts +15 -0
- package/dist/languages/java.js +18 -0
- package/dist/languages/java.js.map +1 -0
- package/dist/languages/javascript.cjs +20 -0
- package/dist/languages/javascript.cjs.map +1 -0
- package/dist/languages/javascript.d.cts +15 -0
- package/dist/languages/javascript.d.ts +15 -0
- package/dist/languages/javascript.js +18 -0
- package/dist/languages/javascript.js.map +1 -0
- package/dist/languages/python.cjs +20 -0
- package/dist/languages/python.cjs.map +1 -0
- package/dist/languages/python.d.cts +15 -0
- package/dist/languages/python.d.ts +15 -0
- package/dist/languages/python.js +18 -0
- package/dist/languages/python.js.map +1 -0
- package/dist/languages/rust.cjs +20 -0
- package/dist/languages/rust.cjs.map +1 -0
- package/dist/languages/rust.d.cts +15 -0
- package/dist/languages/rust.d.ts +15 -0
- package/dist/languages/rust.js +18 -0
- package/dist/languages/rust.js.map +1 -0
- package/dist/languages/typescript.cjs +20 -0
- package/dist/languages/typescript.cjs.map +1 -0
- package/dist/languages/typescript.d.cts +15 -0
- package/dist/languages/typescript.d.ts +15 -0
- package/dist/languages/typescript.js +18 -0
- package/dist/languages/typescript.js.map +1 -0
- package/package.json +84 -8
package/README.md
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# code-languages
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/code-languages)
|
|
4
|
+
[](https://github.com/ElJijuna/code-languages/actions/workflows/ci.yml)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
[](https://www.typescriptlang.org)
|
|
7
|
+
[](package.json)
|
|
8
|
+
|
|
9
|
+
Structured metadata for programming languages, packaged as a typed, tree-shakeable TypeScript library.
|
|
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 7 languages.
|
|
12
|
+
|
|
13
|
+
## Features
|
|
14
|
+
|
|
15
|
+
- TypeScript-first data model
|
|
16
|
+
- Zero runtime dependencies
|
|
17
|
+
- ESM and CommonJS builds
|
|
18
|
+
- Subpath imports for per-language usage
|
|
19
|
+
- Tree-shakeable exports
|
|
20
|
+
- Works in Node.js and modern bundlers
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
npm install code-languages
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
Import only the language metadata you need:
|
|
31
|
+
|
|
32
|
+
```ts
|
|
33
|
+
import { typescript } from "code-languages/typescript";
|
|
34
|
+
|
|
35
|
+
console.log(typescript.name);
|
|
36
|
+
console.log(typescript.extensions);
|
|
37
|
+
console.log(typescript.paradigms);
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Import multiple languages:
|
|
41
|
+
|
|
42
|
+
```ts
|
|
43
|
+
import { javascript } from "code-languages/javascript";
|
|
44
|
+
import { java } from "code-languages/java";
|
|
45
|
+
import { html } from "code-languages/html";
|
|
46
|
+
import { python } from "code-languages/python";
|
|
47
|
+
|
|
48
|
+
console.log(javascript.website);
|
|
49
|
+
console.log(java.version);
|
|
50
|
+
console.log(html.extensions);
|
|
51
|
+
console.log(python.publishedDate);
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
Import from the package root when bundle size is not a concern:
|
|
55
|
+
|
|
56
|
+
```ts
|
|
57
|
+
import { go, html, java, rust, typescript } from "code-languages";
|
|
58
|
+
|
|
59
|
+
console.log(java.name);
|
|
60
|
+
console.log(html.website);
|
|
61
|
+
console.log(go.logo);
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## API
|
|
65
|
+
|
|
66
|
+
Every language object satisfies the `Language` interface:
|
|
67
|
+
|
|
68
|
+
```ts
|
|
69
|
+
export interface Language {
|
|
70
|
+
name: string;
|
|
71
|
+
slug: string;
|
|
72
|
+
description: string;
|
|
73
|
+
longDescription: string;
|
|
74
|
+
publishedDate: string;
|
|
75
|
+
extensions: string[];
|
|
76
|
+
author: string;
|
|
77
|
+
website: string;
|
|
78
|
+
paradigms: string[];
|
|
79
|
+
version: string;
|
|
80
|
+
logo: string;
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## Supported Languages
|
|
85
|
+
|
|
86
|
+
| Language | Slug | Extensions | Version | Import |
|
|
87
|
+
|---|---|---|---|---|
|
|
88
|
+
| TypeScript | `typescript` | `.ts`, `.tsx`, `.mts`, `.cts` | `6.0` | `code-languages/typescript` |
|
|
89
|
+
| JavaScript | `javascript` | `.js`, `.mjs`, `.cjs`, `.jsx` | `ECMAScript 2025` | `code-languages/javascript` |
|
|
90
|
+
| Java | `java` | `.java` | `26` | `code-languages/java` |
|
|
91
|
+
| HTML | `html` | `.html`, `.htm` | `Living Standard` | `code-languages/html` |
|
|
92
|
+
| Python | `python` | `.py`, `.pyw` | `3.14.4` | `code-languages/python` |
|
|
93
|
+
| Rust | `rust` | `.rs` | `1.95.0` | `code-languages/rust` |
|
|
94
|
+
| Go | `go` | `.go` | `1.26.3` | `code-languages/go` |
|
|
95
|
+
|
|
96
|
+
## Development
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
npm ci
|
|
100
|
+
npm run check
|
|
101
|
+
npm run build
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Common scripts:
|
|
105
|
+
|
|
106
|
+
| Script | Purpose |
|
|
107
|
+
|---|---|
|
|
108
|
+
| `npm run lint` | Run Biome checks |
|
|
109
|
+
| `npm run typecheck` | Run TypeScript without emitting files |
|
|
110
|
+
| `npm test` | Run Vitest |
|
|
111
|
+
| `npm run build` | Build ESM, CommonJS, and declaration files |
|
|
112
|
+
| `npm run check` | Run lint, typecheck, and tests |
|
|
113
|
+
|
|
114
|
+
## Contributing
|
|
115
|
+
|
|
116
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for setup instructions, field rules, and the process for adding a new language.
|
|
117
|
+
|
|
118
|
+
## License
|
|
119
|
+
|
|
120
|
+
MIT
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/go.ts
|
|
4
|
+
var go = {
|
|
5
|
+
name: "Go",
|
|
6
|
+
slug: "go",
|
|
7
|
+
description: "A compiled language designed for simplicity, fast builds, and concurrency.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "2012-03-28",
|
|
10
|
+
extensions: [".go"],
|
|
11
|
+
author: "Robert Griesemer, Rob Pike, Ken Thompson / Google",
|
|
12
|
+
website: "https://go.dev",
|
|
13
|
+
paradigms: ["concurrent", "imperative", "procedural"],
|
|
14
|
+
version: "1.26.3",
|
|
15
|
+
logo: "https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
// src/languages/html.ts
|
|
19
|
+
var html = {
|
|
20
|
+
name: "HTML",
|
|
21
|
+
slug: "html",
|
|
22
|
+
description: "A markup language for structuring web pages and browser-rendered documents.",
|
|
23
|
+
longDescription: "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.",
|
|
24
|
+
publishedDate: "1993-06-01",
|
|
25
|
+
extensions: [".html", ".htm"],
|
|
26
|
+
author: "Tim Berners-Lee / WHATWG",
|
|
27
|
+
website: "https://html.spec.whatwg.org",
|
|
28
|
+
paradigms: ["declarative", "markup"],
|
|
29
|
+
version: "Living Standard",
|
|
30
|
+
logo: "https://www.w3.org/html/logo/downloads/HTML5_Badge.svg"
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
// src/languages/java.ts
|
|
34
|
+
var java = {
|
|
35
|
+
name: "Java",
|
|
36
|
+
slug: "java",
|
|
37
|
+
description: "A class-based, object-oriented language for portable applications and services.",
|
|
38
|
+
longDescription: "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.",
|
|
39
|
+
publishedDate: "1995-05-23",
|
|
40
|
+
extensions: [".java"],
|
|
41
|
+
author: "James Gosling / Sun Microsystems",
|
|
42
|
+
website: "https://www.java.com",
|
|
43
|
+
paradigms: ["class-based", "concurrent", "generic", "imperative", "object-oriented"],
|
|
44
|
+
version: "26",
|
|
45
|
+
logo: "https://www.vectorlogo.zone/logos/java/java-icon.svg"
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
// src/languages/javascript.ts
|
|
49
|
+
var javascript = {
|
|
50
|
+
name: "JavaScript",
|
|
51
|
+
slug: "javascript",
|
|
52
|
+
description: "A dynamic scripting language for the web, servers, tools, and applications.",
|
|
53
|
+
longDescription: "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.",
|
|
54
|
+
publishedDate: "1995-12-04",
|
|
55
|
+
extensions: [".js", ".mjs", ".cjs", ".jsx"],
|
|
56
|
+
author: "Brendan Eich / Netscape",
|
|
57
|
+
website: "https://developer.mozilla.org/en-US/docs/Web/JavaScript",
|
|
58
|
+
paradigms: ["event-driven", "functional", "imperative", "object-oriented", "prototype-based"],
|
|
59
|
+
version: "ECMAScript 2025",
|
|
60
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png"
|
|
61
|
+
};
|
|
62
|
+
|
|
63
|
+
// src/languages/python.ts
|
|
64
|
+
var python = {
|
|
65
|
+
name: "Python",
|
|
66
|
+
slug: "python",
|
|
67
|
+
description: "A high-level, readable language used for applications, automation, data, and AI.",
|
|
68
|
+
longDescription: "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.",
|
|
69
|
+
publishedDate: "1991-02-20",
|
|
70
|
+
extensions: [".py", ".pyw"],
|
|
71
|
+
author: "Guido van Rossum",
|
|
72
|
+
website: "https://www.python.org",
|
|
73
|
+
paradigms: ["object-oriented", "functional", "imperative", "procedural"],
|
|
74
|
+
version: "3.14.4",
|
|
75
|
+
logo: "https://www.python.org/static/community_logos/python-logo-only.svg"
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
// src/languages/rust.ts
|
|
79
|
+
var rust = {
|
|
80
|
+
name: "Rust",
|
|
81
|
+
slug: "rust",
|
|
82
|
+
description: "A systems programming language focused on safety, speed, and concurrency.",
|
|
83
|
+
longDescription: "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.",
|
|
84
|
+
publishedDate: "2015-05-15",
|
|
85
|
+
extensions: [".rs"],
|
|
86
|
+
author: "Graydon Hoare / Mozilla Research",
|
|
87
|
+
website: "https://www.rust-lang.org",
|
|
88
|
+
paradigms: ["concurrent", "functional", "imperative", "procedural"],
|
|
89
|
+
version: "1.95.0",
|
|
90
|
+
logo: "https://www.rust-lang.org/logos/rust-logo-512x512.png"
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
// src/languages/typescript.ts
|
|
94
|
+
var typescript = {
|
|
95
|
+
name: "TypeScript",
|
|
96
|
+
slug: "typescript",
|
|
97
|
+
description: "A typed superset of JavaScript that compiles to plain JavaScript.",
|
|
98
|
+
longDescription: "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.",
|
|
99
|
+
publishedDate: "2012-10-01",
|
|
100
|
+
extensions: [".ts", ".tsx", ".mts", ".cts"],
|
|
101
|
+
author: "Anders Hejlsberg / Microsoft",
|
|
102
|
+
website: "https://www.typescriptlang.org",
|
|
103
|
+
paradigms: ["object-oriented", "functional", "imperative", "generic"],
|
|
104
|
+
version: "6.0",
|
|
105
|
+
logo: "https://www.typescriptlang.org/icons/icon-512x512.png"
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
exports.go = go;
|
|
109
|
+
exports.html = html;
|
|
110
|
+
exports.java = java;
|
|
111
|
+
exports.javascript = javascript;
|
|
112
|
+
exports.python = python;
|
|
113
|
+
exports.rust = rust;
|
|
114
|
+
exports.typescript = typescript;
|
|
115
|
+
//# sourceMappingURL=index.cjs.map
|
|
116
|
+
//# sourceMappingURL=index.cjs.map
|
|
@@ -0,0 +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"]}
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export { go } from './languages/go.cjs';
|
|
2
|
+
export { html } from './languages/html.cjs';
|
|
3
|
+
export { java } from './languages/java.cjs';
|
|
4
|
+
export { javascript } from './languages/javascript.cjs';
|
|
5
|
+
export { python } from './languages/python.cjs';
|
|
6
|
+
export { rust } from './languages/rust.cjs';
|
|
7
|
+
export { typescript } from './languages/typescript.cjs';
|
|
8
|
+
|
|
9
|
+
interface Language {
|
|
10
|
+
/** Display name. e.g. "TypeScript" */
|
|
11
|
+
name: string;
|
|
12
|
+
/** URL-safe identifier. e.g. "typescript" */
|
|
13
|
+
slug: string;
|
|
14
|
+
/** One-line summary, max 160 characters. */
|
|
15
|
+
description: string;
|
|
16
|
+
/** Rich multi-paragraph description in plain text. */
|
|
17
|
+
longDescription: string;
|
|
18
|
+
/** ISO 8601 date of first public release. e.g. "2012-10-01" */
|
|
19
|
+
publishedDate: string;
|
|
20
|
+
/** All file extensions associated with the language. e.g. [".ts", ".tsx"] */
|
|
21
|
+
extensions: string[];
|
|
22
|
+
/** Original author or organization. e.g. "Anders Hejlsberg / Microsoft" */
|
|
23
|
+
author: string;
|
|
24
|
+
/** Official website URL. e.g. "https://www.typescriptlang.org" */
|
|
25
|
+
website: string;
|
|
26
|
+
/** Programming paradigms. e.g. ["object-oriented", "functional", "imperative"] */
|
|
27
|
+
paradigms: string[];
|
|
28
|
+
/** Latest stable version at time of last data update. e.g. "5.4.5" */
|
|
29
|
+
version: string;
|
|
30
|
+
/** URL to the official language logo or icon. */
|
|
31
|
+
logo: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type { Language };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export { go } from './languages/go.js';
|
|
2
|
+
export { html } from './languages/html.js';
|
|
3
|
+
export { java } from './languages/java.js';
|
|
4
|
+
export { javascript } from './languages/javascript.js';
|
|
5
|
+
export { python } from './languages/python.js';
|
|
6
|
+
export { rust } from './languages/rust.js';
|
|
7
|
+
export { typescript } from './languages/typescript.js';
|
|
8
|
+
|
|
9
|
+
interface Language {
|
|
10
|
+
/** Display name. e.g. "TypeScript" */
|
|
11
|
+
name: string;
|
|
12
|
+
/** URL-safe identifier. e.g. "typescript" */
|
|
13
|
+
slug: string;
|
|
14
|
+
/** One-line summary, max 160 characters. */
|
|
15
|
+
description: string;
|
|
16
|
+
/** Rich multi-paragraph description in plain text. */
|
|
17
|
+
longDescription: string;
|
|
18
|
+
/** ISO 8601 date of first public release. e.g. "2012-10-01" */
|
|
19
|
+
publishedDate: string;
|
|
20
|
+
/** All file extensions associated with the language. e.g. [".ts", ".tsx"] */
|
|
21
|
+
extensions: string[];
|
|
22
|
+
/** Original author or organization. e.g. "Anders Hejlsberg / Microsoft" */
|
|
23
|
+
author: string;
|
|
24
|
+
/** Official website URL. e.g. "https://www.typescriptlang.org" */
|
|
25
|
+
website: string;
|
|
26
|
+
/** Programming paradigms. e.g. ["object-oriented", "functional", "imperative"] */
|
|
27
|
+
paradigms: string[];
|
|
28
|
+
/** Latest stable version at time of last data update. e.g. "5.4.5" */
|
|
29
|
+
version: string;
|
|
30
|
+
/** URL to the official language logo or icon. */
|
|
31
|
+
logo: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export type { Language };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
// src/languages/go.ts
|
|
2
|
+
var go = {
|
|
3
|
+
name: "Go",
|
|
4
|
+
slug: "go",
|
|
5
|
+
description: "A compiled language designed for simplicity, fast builds, and concurrency.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "2012-03-28",
|
|
8
|
+
extensions: [".go"],
|
|
9
|
+
author: "Robert Griesemer, Rob Pike, Ken Thompson / Google",
|
|
10
|
+
website: "https://go.dev",
|
|
11
|
+
paradigms: ["concurrent", "imperative", "procedural"],
|
|
12
|
+
version: "1.26.3",
|
|
13
|
+
logo: "https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
// src/languages/html.ts
|
|
17
|
+
var html = {
|
|
18
|
+
name: "HTML",
|
|
19
|
+
slug: "html",
|
|
20
|
+
description: "A markup language for structuring web pages and browser-rendered documents.",
|
|
21
|
+
longDescription: "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.",
|
|
22
|
+
publishedDate: "1993-06-01",
|
|
23
|
+
extensions: [".html", ".htm"],
|
|
24
|
+
author: "Tim Berners-Lee / WHATWG",
|
|
25
|
+
website: "https://html.spec.whatwg.org",
|
|
26
|
+
paradigms: ["declarative", "markup"],
|
|
27
|
+
version: "Living Standard",
|
|
28
|
+
logo: "https://www.w3.org/html/logo/downloads/HTML5_Badge.svg"
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
// src/languages/java.ts
|
|
32
|
+
var java = {
|
|
33
|
+
name: "Java",
|
|
34
|
+
slug: "java",
|
|
35
|
+
description: "A class-based, object-oriented language for portable applications and services.",
|
|
36
|
+
longDescription: "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.",
|
|
37
|
+
publishedDate: "1995-05-23",
|
|
38
|
+
extensions: [".java"],
|
|
39
|
+
author: "James Gosling / Sun Microsystems",
|
|
40
|
+
website: "https://www.java.com",
|
|
41
|
+
paradigms: ["class-based", "concurrent", "generic", "imperative", "object-oriented"],
|
|
42
|
+
version: "26",
|
|
43
|
+
logo: "https://www.vectorlogo.zone/logos/java/java-icon.svg"
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
// src/languages/javascript.ts
|
|
47
|
+
var javascript = {
|
|
48
|
+
name: "JavaScript",
|
|
49
|
+
slug: "javascript",
|
|
50
|
+
description: "A dynamic scripting language for the web, servers, tools, and applications.",
|
|
51
|
+
longDescription: "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.",
|
|
52
|
+
publishedDate: "1995-12-04",
|
|
53
|
+
extensions: [".js", ".mjs", ".cjs", ".jsx"],
|
|
54
|
+
author: "Brendan Eich / Netscape",
|
|
55
|
+
website: "https://developer.mozilla.org/en-US/docs/Web/JavaScript",
|
|
56
|
+
paradigms: ["event-driven", "functional", "imperative", "object-oriented", "prototype-based"],
|
|
57
|
+
version: "ECMAScript 2025",
|
|
58
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png"
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
// src/languages/python.ts
|
|
62
|
+
var python = {
|
|
63
|
+
name: "Python",
|
|
64
|
+
slug: "python",
|
|
65
|
+
description: "A high-level, readable language used for applications, automation, data, and AI.",
|
|
66
|
+
longDescription: "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.",
|
|
67
|
+
publishedDate: "1991-02-20",
|
|
68
|
+
extensions: [".py", ".pyw"],
|
|
69
|
+
author: "Guido van Rossum",
|
|
70
|
+
website: "https://www.python.org",
|
|
71
|
+
paradigms: ["object-oriented", "functional", "imperative", "procedural"],
|
|
72
|
+
version: "3.14.4",
|
|
73
|
+
logo: "https://www.python.org/static/community_logos/python-logo-only.svg"
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
// src/languages/rust.ts
|
|
77
|
+
var rust = {
|
|
78
|
+
name: "Rust",
|
|
79
|
+
slug: "rust",
|
|
80
|
+
description: "A systems programming language focused on safety, speed, and concurrency.",
|
|
81
|
+
longDescription: "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.",
|
|
82
|
+
publishedDate: "2015-05-15",
|
|
83
|
+
extensions: [".rs"],
|
|
84
|
+
author: "Graydon Hoare / Mozilla Research",
|
|
85
|
+
website: "https://www.rust-lang.org",
|
|
86
|
+
paradigms: ["concurrent", "functional", "imperative", "procedural"],
|
|
87
|
+
version: "1.95.0",
|
|
88
|
+
logo: "https://www.rust-lang.org/logos/rust-logo-512x512.png"
|
|
89
|
+
};
|
|
90
|
+
|
|
91
|
+
// src/languages/typescript.ts
|
|
92
|
+
var typescript = {
|
|
93
|
+
name: "TypeScript",
|
|
94
|
+
slug: "typescript",
|
|
95
|
+
description: "A typed superset of JavaScript that compiles to plain JavaScript.",
|
|
96
|
+
longDescription: "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.",
|
|
97
|
+
publishedDate: "2012-10-01",
|
|
98
|
+
extensions: [".ts", ".tsx", ".mts", ".cts"],
|
|
99
|
+
author: "Anders Hejlsberg / Microsoft",
|
|
100
|
+
website: "https://www.typescriptlang.org",
|
|
101
|
+
paradigms: ["object-oriented", "functional", "imperative", "generic"],
|
|
102
|
+
version: "6.0",
|
|
103
|
+
logo: "https://www.typescriptlang.org/icons/icon-512x512.png"
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
export { go, html, java, javascript, python, rust, typescript };
|
|
107
|
+
//# sourceMappingURL=index.js.map
|
|
108
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/go.ts
|
|
4
|
+
var go = {
|
|
5
|
+
name: "Go",
|
|
6
|
+
slug: "go",
|
|
7
|
+
description: "A compiled language designed for simplicity, fast builds, and concurrency.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "2012-03-28",
|
|
10
|
+
extensions: [".go"],
|
|
11
|
+
author: "Robert Griesemer, Rob Pike, Ken Thompson / Google",
|
|
12
|
+
website: "https://go.dev",
|
|
13
|
+
paradigms: ["concurrent", "imperative", "procedural"],
|
|
14
|
+
version: "1.26.3",
|
|
15
|
+
logo: "https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.go = go;
|
|
19
|
+
//# sourceMappingURL=go.cjs.map
|
|
20
|
+
//# sourceMappingURL=go.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/go.ts"],"names":[],"mappings":";;;AAEO,IAAM,EAAA,GAAK;AAAA,EAChB,IAAA,EAAM,IAAA;AAAA,EACN,IAAA,EAAM,IAAA;AAAA,EACN,WAAA,EAAa,4EAAA;AAAA,EACb,eAAA,EACE,+RAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAK,CAAA;AAAA,EAClB,MAAA,EAAQ,mDAAA;AAAA,EACR,OAAA,EAAS,gBAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,YAAA,EAAc,YAAY,CAAA;AAAA,EACpD,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"go.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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const go: {
|
|
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 { go };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const go: {
|
|
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 { go };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/go.ts
|
|
2
|
+
var go = {
|
|
3
|
+
name: "Go",
|
|
4
|
+
slug: "go",
|
|
5
|
+
description: "A compiled language designed for simplicity, fast builds, and concurrency.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "2012-03-28",
|
|
8
|
+
extensions: [".go"],
|
|
9
|
+
author: "Robert Griesemer, Rob Pike, Ken Thompson / Google",
|
|
10
|
+
website: "https://go.dev",
|
|
11
|
+
paradigms: ["concurrent", "imperative", "procedural"],
|
|
12
|
+
version: "1.26.3",
|
|
13
|
+
logo: "https://go.dev/blog/go-brand/Go-Logo/SVG/Go-Logo_Blue.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { go };
|
|
17
|
+
//# sourceMappingURL=go.js.map
|
|
18
|
+
//# sourceMappingURL=go.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/go.ts"],"names":[],"mappings":";AAEO,IAAM,EAAA,GAAK;AAAA,EAChB,IAAA,EAAM,IAAA;AAAA,EACN,IAAA,EAAM,IAAA;AAAA,EACN,WAAA,EAAa,4EAAA;AAAA,EACb,eAAA,EACE,+RAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAK,CAAA;AAAA,EAClB,MAAA,EAAQ,mDAAA;AAAA,EACR,OAAA,EAAS,gBAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,YAAA,EAAc,YAAY,CAAA;AAAA,EACpD,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"go.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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/html.ts
|
|
4
|
+
var html = {
|
|
5
|
+
name: "HTML",
|
|
6
|
+
slug: "html",
|
|
7
|
+
description: "A markup language for structuring web pages and browser-rendered documents.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "1993-06-01",
|
|
10
|
+
extensions: [".html", ".htm"],
|
|
11
|
+
author: "Tim Berners-Lee / WHATWG",
|
|
12
|
+
website: "https://html.spec.whatwg.org",
|
|
13
|
+
paradigms: ["declarative", "markup"],
|
|
14
|
+
version: "Living Standard",
|
|
15
|
+
logo: "https://www.w3.org/html/logo/downloads/HTML5_Badge.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.html = html;
|
|
19
|
+
//# sourceMappingURL=html.cjs.map
|
|
20
|
+
//# sourceMappingURL=html.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/html.ts"],"names":[],"mappings":";;;AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,6EAAA;AAAA,EACb,eAAA,EACE,uTAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,EAC5B,MAAA,EAAQ,0BAAA;AAAA,EACR,OAAA,EAAS,8BAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,QAAQ,CAAA;AAAA,EACnC,OAAA,EAAS,iBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"html.cjs","sourcesContent":["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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const html: {
|
|
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 { html };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const html: {
|
|
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 { html };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/html.ts
|
|
2
|
+
var html = {
|
|
3
|
+
name: "HTML",
|
|
4
|
+
slug: "html",
|
|
5
|
+
description: "A markup language for structuring web pages and browser-rendered documents.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "1993-06-01",
|
|
8
|
+
extensions: [".html", ".htm"],
|
|
9
|
+
author: "Tim Berners-Lee / WHATWG",
|
|
10
|
+
website: "https://html.spec.whatwg.org",
|
|
11
|
+
paradigms: ["declarative", "markup"],
|
|
12
|
+
version: "Living Standard",
|
|
13
|
+
logo: "https://www.w3.org/html/logo/downloads/HTML5_Badge.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { html };
|
|
17
|
+
//# sourceMappingURL=html.js.map
|
|
18
|
+
//# sourceMappingURL=html.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/html.ts"],"names":[],"mappings":";AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,6EAAA;AAAA,EACb,eAAA,EACE,uTAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,EAC5B,MAAA,EAAQ,0BAAA;AAAA,EACR,OAAA,EAAS,8BAAA;AAAA,EACT,SAAA,EAAW,CAAC,aAAA,EAAe,QAAQ,CAAA;AAAA,EACnC,OAAA,EAAS,iBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"html.js","sourcesContent":["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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/java.ts
|
|
4
|
+
var java = {
|
|
5
|
+
name: "Java",
|
|
6
|
+
slug: "java",
|
|
7
|
+
description: "A class-based, object-oriented language for portable applications and services.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "1995-05-23",
|
|
10
|
+
extensions: [".java"],
|
|
11
|
+
author: "James Gosling / Sun Microsystems",
|
|
12
|
+
website: "https://www.java.com",
|
|
13
|
+
paradigms: ["class-based", "concurrent", "generic", "imperative", "object-oriented"],
|
|
14
|
+
version: "26",
|
|
15
|
+
logo: "https://www.vectorlogo.zone/logos/java/java-icon.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.java = java;
|
|
19
|
+
//# sourceMappingURL=java.cjs.map
|
|
20
|
+
//# sourceMappingURL=java.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/java.ts"],"names":[],"mappings":";;;AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,iFAAA;AAAA,EACb,eAAA,EACE,kUAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAO,CAAA;AAAA,EACpB,MAAA,EAAQ,kCAAA;AAAA,EACR,OAAA,EAAS,sBAAA;AAAA,EACT,WAAW,CAAC,aAAA,EAAe,YAAA,EAAc,SAAA,EAAW,cAAc,iBAAiB,CAAA;AAAA,EACnF,OAAA,EAAS,IAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"java.cjs","sourcesContent":["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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const java: {
|
|
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 { java };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const java: {
|
|
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 { java };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/java.ts
|
|
2
|
+
var java = {
|
|
3
|
+
name: "Java",
|
|
4
|
+
slug: "java",
|
|
5
|
+
description: "A class-based, object-oriented language for portable applications and services.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "1995-05-23",
|
|
8
|
+
extensions: [".java"],
|
|
9
|
+
author: "James Gosling / Sun Microsystems",
|
|
10
|
+
website: "https://www.java.com",
|
|
11
|
+
paradigms: ["class-based", "concurrent", "generic", "imperative", "object-oriented"],
|
|
12
|
+
version: "26",
|
|
13
|
+
logo: "https://www.vectorlogo.zone/logos/java/java-icon.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { java };
|
|
17
|
+
//# sourceMappingURL=java.js.map
|
|
18
|
+
//# sourceMappingURL=java.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/java.ts"],"names":[],"mappings":";AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,iFAAA;AAAA,EACb,eAAA,EACE,kUAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,OAAO,CAAA;AAAA,EACpB,MAAA,EAAQ,kCAAA;AAAA,EACR,OAAA,EAAS,sBAAA;AAAA,EACT,WAAW,CAAC,aAAA,EAAe,YAAA,EAAc,SAAA,EAAW,cAAc,iBAAiB,CAAA;AAAA,EACnF,OAAA,EAAS,IAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"java.js","sourcesContent":["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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/javascript.ts
|
|
4
|
+
var javascript = {
|
|
5
|
+
name: "JavaScript",
|
|
6
|
+
slug: "javascript",
|
|
7
|
+
description: "A dynamic scripting language for the web, servers, tools, and applications.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "1995-12-04",
|
|
10
|
+
extensions: [".js", ".mjs", ".cjs", ".jsx"],
|
|
11
|
+
author: "Brendan Eich / Netscape",
|
|
12
|
+
website: "https://developer.mozilla.org/en-US/docs/Web/JavaScript",
|
|
13
|
+
paradigms: ["event-driven", "functional", "imperative", "object-oriented", "prototype-based"],
|
|
14
|
+
version: "ECMAScript 2025",
|
|
15
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.javascript = javascript;
|
|
19
|
+
//# sourceMappingURL=javascript.cjs.map
|
|
20
|
+
//# sourceMappingURL=javascript.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/javascript.ts"],"names":[],"mappings":";;;AAEO,IAAM,UAAA,GAAa;AAAA,EACxB,IAAA,EAAM,YAAA;AAAA,EACN,IAAA,EAAM,YAAA;AAAA,EACN,WAAA,EAAa,6EAAA;AAAA,EACb,eAAA,EACE,uSAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAA,EAAQ,QAAQ,MAAM,CAAA;AAAA,EAC1C,MAAA,EAAQ,yBAAA;AAAA,EACR,OAAA,EAAS,yDAAA;AAAA,EACT,WAAW,CAAC,cAAA,EAAgB,YAAA,EAAc,YAAA,EAAc,mBAAmB,iBAAiB,CAAA;AAAA,EAC5F,OAAA,EAAS,iBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"javascript.cjs","sourcesContent":["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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const javascript: {
|
|
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 { javascript };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const javascript: {
|
|
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 { javascript };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/javascript.ts
|
|
2
|
+
var javascript = {
|
|
3
|
+
name: "JavaScript",
|
|
4
|
+
slug: "javascript",
|
|
5
|
+
description: "A dynamic scripting language for the web, servers, tools, and applications.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "1995-12-04",
|
|
8
|
+
extensions: [".js", ".mjs", ".cjs", ".jsx"],
|
|
9
|
+
author: "Brendan Eich / Netscape",
|
|
10
|
+
website: "https://developer.mozilla.org/en-US/docs/Web/JavaScript",
|
|
11
|
+
paradigms: ["event-driven", "functional", "imperative", "object-oriented", "prototype-based"],
|
|
12
|
+
version: "ECMAScript 2025",
|
|
13
|
+
logo: "https://upload.wikimedia.org/wikipedia/commons/6/6a/JavaScript-logo.png"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { javascript };
|
|
17
|
+
//# sourceMappingURL=javascript.js.map
|
|
18
|
+
//# sourceMappingURL=javascript.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/javascript.ts"],"names":[],"mappings":";AAEO,IAAM,UAAA,GAAa;AAAA,EACxB,IAAA,EAAM,YAAA;AAAA,EACN,IAAA,EAAM,YAAA;AAAA,EACN,WAAA,EAAa,6EAAA;AAAA,EACb,eAAA,EACE,uSAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAA,EAAQ,QAAQ,MAAM,CAAA;AAAA,EAC1C,MAAA,EAAQ,yBAAA;AAAA,EACR,OAAA,EAAS,yDAAA;AAAA,EACT,WAAW,CAAC,cAAA,EAAgB,YAAA,EAAc,YAAA,EAAc,mBAAmB,iBAAiB,CAAA;AAAA,EAC5F,OAAA,EAAS,iBAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"javascript.js","sourcesContent":["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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/python.ts
|
|
4
|
+
var python = {
|
|
5
|
+
name: "Python",
|
|
6
|
+
slug: "python",
|
|
7
|
+
description: "A high-level, readable language used for applications, automation, data, and AI.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "1991-02-20",
|
|
10
|
+
extensions: [".py", ".pyw"],
|
|
11
|
+
author: "Guido van Rossum",
|
|
12
|
+
website: "https://www.python.org",
|
|
13
|
+
paradigms: ["object-oriented", "functional", "imperative", "procedural"],
|
|
14
|
+
version: "3.14.4",
|
|
15
|
+
logo: "https://www.python.org/static/community_logos/python-logo-only.svg"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.python = python;
|
|
19
|
+
//# sourceMappingURL=python.cjs.map
|
|
20
|
+
//# sourceMappingURL=python.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/python.ts"],"names":[],"mappings":";;;AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,IAAA,EAAM,QAAA;AAAA,EACN,WAAA,EAAa,kFAAA;AAAA,EACb,eAAA,EACE,0VAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAM,CAAA;AAAA,EAC1B,MAAA,EAAQ,kBAAA;AAAA,EACR,OAAA,EAAS,wBAAA;AAAA,EACT,SAAA,EAAW,CAAC,iBAAA,EAAmB,YAAA,EAAc,cAAc,YAAY,CAAA;AAAA,EACvE,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"python.cjs","sourcesContent":["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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const python: {
|
|
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 { python };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const python: {
|
|
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 { python };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/python.ts
|
|
2
|
+
var python = {
|
|
3
|
+
name: "Python",
|
|
4
|
+
slug: "python",
|
|
5
|
+
description: "A high-level, readable language used for applications, automation, data, and AI.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "1991-02-20",
|
|
8
|
+
extensions: [".py", ".pyw"],
|
|
9
|
+
author: "Guido van Rossum",
|
|
10
|
+
website: "https://www.python.org",
|
|
11
|
+
paradigms: ["object-oriented", "functional", "imperative", "procedural"],
|
|
12
|
+
version: "3.14.4",
|
|
13
|
+
logo: "https://www.python.org/static/community_logos/python-logo-only.svg"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { python };
|
|
17
|
+
//# sourceMappingURL=python.js.map
|
|
18
|
+
//# sourceMappingURL=python.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/python.ts"],"names":[],"mappings":";AAEO,IAAM,MAAA,GAAS;AAAA,EACpB,IAAA,EAAM,QAAA;AAAA,EACN,IAAA,EAAM,QAAA;AAAA,EACN,WAAA,EAAa,kFAAA;AAAA,EACb,eAAA,EACE,0VAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAM,CAAA;AAAA,EAC1B,MAAA,EAAQ,kBAAA;AAAA,EACR,OAAA,EAAS,wBAAA;AAAA,EACT,SAAA,EAAW,CAAC,iBAAA,EAAmB,YAAA,EAAc,cAAc,YAAY,CAAA;AAAA,EACvE,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"python.js","sourcesContent":["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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/rust.ts
|
|
4
|
+
var rust = {
|
|
5
|
+
name: "Rust",
|
|
6
|
+
slug: "rust",
|
|
7
|
+
description: "A systems programming language focused on safety, speed, and concurrency.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "2015-05-15",
|
|
10
|
+
extensions: [".rs"],
|
|
11
|
+
author: "Graydon Hoare / Mozilla Research",
|
|
12
|
+
website: "https://www.rust-lang.org",
|
|
13
|
+
paradigms: ["concurrent", "functional", "imperative", "procedural"],
|
|
14
|
+
version: "1.95.0",
|
|
15
|
+
logo: "https://www.rust-lang.org/logos/rust-logo-512x512.png"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.rust = rust;
|
|
19
|
+
//# sourceMappingURL=rust.cjs.map
|
|
20
|
+
//# sourceMappingURL=rust.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/rust.ts"],"names":[],"mappings":";;;AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,2EAAA;AAAA,EACb,eAAA,EACE,oRAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAK,CAAA;AAAA,EAClB,MAAA,EAAQ,kCAAA;AAAA,EACR,OAAA,EAAS,2BAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,YAAA,EAAc,cAAc,YAAY,CAAA;AAAA,EAClE,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"rust.cjs","sourcesContent":["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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const rust: {
|
|
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 { rust };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const rust: {
|
|
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 { rust };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/rust.ts
|
|
2
|
+
var rust = {
|
|
3
|
+
name: "Rust",
|
|
4
|
+
slug: "rust",
|
|
5
|
+
description: "A systems programming language focused on safety, speed, and concurrency.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "2015-05-15",
|
|
8
|
+
extensions: [".rs"],
|
|
9
|
+
author: "Graydon Hoare / Mozilla Research",
|
|
10
|
+
website: "https://www.rust-lang.org",
|
|
11
|
+
paradigms: ["concurrent", "functional", "imperative", "procedural"],
|
|
12
|
+
version: "1.95.0",
|
|
13
|
+
logo: "https://www.rust-lang.org/logos/rust-logo-512x512.png"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { rust };
|
|
17
|
+
//# sourceMappingURL=rust.js.map
|
|
18
|
+
//# sourceMappingURL=rust.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/rust.ts"],"names":[],"mappings":";AAEO,IAAM,IAAA,GAAO;AAAA,EAClB,IAAA,EAAM,MAAA;AAAA,EACN,IAAA,EAAM,MAAA;AAAA,EACN,WAAA,EAAa,2EAAA;AAAA,EACb,eAAA,EACE,oRAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAK,CAAA;AAAA,EAClB,MAAA,EAAQ,kCAAA;AAAA,EACR,OAAA,EAAS,2BAAA;AAAA,EACT,SAAA,EAAW,CAAC,YAAA,EAAc,YAAA,EAAc,cAAc,YAAY,CAAA;AAAA,EAClE,OAAA,EAAS,QAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"rust.js","sourcesContent":["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"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/languages/typescript.ts
|
|
4
|
+
var typescript = {
|
|
5
|
+
name: "TypeScript",
|
|
6
|
+
slug: "typescript",
|
|
7
|
+
description: "A typed superset of JavaScript that compiles to plain JavaScript.",
|
|
8
|
+
longDescription: "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.",
|
|
9
|
+
publishedDate: "2012-10-01",
|
|
10
|
+
extensions: [".ts", ".tsx", ".mts", ".cts"],
|
|
11
|
+
author: "Anders Hejlsberg / Microsoft",
|
|
12
|
+
website: "https://www.typescriptlang.org",
|
|
13
|
+
paradigms: ["object-oriented", "functional", "imperative", "generic"],
|
|
14
|
+
version: "6.0",
|
|
15
|
+
logo: "https://www.typescriptlang.org/icons/icon-512x512.png"
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
exports.typescript = typescript;
|
|
19
|
+
//# sourceMappingURL=typescript.cjs.map
|
|
20
|
+
//# sourceMappingURL=typescript.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/typescript.ts"],"names":[],"mappings":";;;AAEO,IAAM,UAAA,GAAa;AAAA,EACxB,IAAA,EAAM,YAAA;AAAA,EACN,IAAA,EAAM,YAAA;AAAA,EACN,WAAA,EAAa,mEAAA;AAAA,EACb,eAAA,EACE,8SAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAA,EAAQ,QAAQ,MAAM,CAAA;AAAA,EAC1C,MAAA,EAAQ,8BAAA;AAAA,EACR,OAAA,EAAS,gCAAA;AAAA,EACT,SAAA,EAAW,CAAC,iBAAA,EAAmB,YAAA,EAAc,cAAc,SAAS,CAAA;AAAA,EACpE,OAAA,EAAS,KAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"typescript.cjs","sourcesContent":["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"]}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const typescript: {
|
|
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 { typescript };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const typescript: {
|
|
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 { typescript };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
// src/languages/typescript.ts
|
|
2
|
+
var typescript = {
|
|
3
|
+
name: "TypeScript",
|
|
4
|
+
slug: "typescript",
|
|
5
|
+
description: "A typed superset of JavaScript that compiles to plain JavaScript.",
|
|
6
|
+
longDescription: "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.",
|
|
7
|
+
publishedDate: "2012-10-01",
|
|
8
|
+
extensions: [".ts", ".tsx", ".mts", ".cts"],
|
|
9
|
+
author: "Anders Hejlsberg / Microsoft",
|
|
10
|
+
website: "https://www.typescriptlang.org",
|
|
11
|
+
paradigms: ["object-oriented", "functional", "imperative", "generic"],
|
|
12
|
+
version: "6.0",
|
|
13
|
+
logo: "https://www.typescriptlang.org/icons/icon-512x512.png"
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
export { typescript };
|
|
17
|
+
//# sourceMappingURL=typescript.js.map
|
|
18
|
+
//# sourceMappingURL=typescript.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/languages/typescript.ts"],"names":[],"mappings":";AAEO,IAAM,UAAA,GAAa;AAAA,EACxB,IAAA,EAAM,YAAA;AAAA,EACN,IAAA,EAAM,YAAA;AAAA,EACN,WAAA,EAAa,mEAAA;AAAA,EACb,eAAA,EACE,8SAAA;AAAA,EACF,aAAA,EAAe,YAAA;AAAA,EACf,UAAA,EAAY,CAAC,KAAA,EAAO,MAAA,EAAQ,QAAQ,MAAM,CAAA;AAAA,EAC1C,MAAA,EAAQ,8BAAA;AAAA,EACR,OAAA,EAAS,gCAAA;AAAA,EACT,SAAA,EAAW,CAAC,iBAAA,EAAmB,YAAA,EAAc,cAAc,SAAS,CAAA;AAAA,EACpE,OAAA,EAAS,KAAA;AAAA,EACT,IAAA,EAAM;AACR","file":"typescript.js","sourcesContent":["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"]}
|
package/package.json
CHANGED
|
@@ -1,20 +1,96 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-languages",
|
|
3
|
-
"version": "0.0
|
|
4
|
-
"description": "",
|
|
5
|
-
"homepage": "https://github.com/ElJijuna/
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Structured metadata for programming languages.",
|
|
5
|
+
"homepage": "https://github.com/ElJijuna/code-languages#readme",
|
|
6
6
|
"bugs": {
|
|
7
|
-
"url": "https://github.com/ElJijuna/
|
|
7
|
+
"url": "https://github.com/ElJijuna/code-languages/issues"
|
|
8
8
|
},
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
|
-
"url": "git+https://github.com/ElJijuna/
|
|
11
|
+
"url": "git+https://github.com/ElJijuna/code-languages.git"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"author": "pilmee <pilmee@gmail.com>",
|
|
15
15
|
"type": "module",
|
|
16
|
-
"
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist/index.cjs",
|
|
21
|
+
"module": "./dist/index.js",
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
|
+
"exports": {
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.js",
|
|
27
|
+
"require": "./dist/index.cjs"
|
|
28
|
+
},
|
|
29
|
+
"./typescript": {
|
|
30
|
+
"types": "./dist/languages/typescript.d.ts",
|
|
31
|
+
"import": "./dist/languages/typescript.js",
|
|
32
|
+
"require": "./dist/languages/typescript.cjs"
|
|
33
|
+
},
|
|
34
|
+
"./javascript": {
|
|
35
|
+
"types": "./dist/languages/javascript.d.ts",
|
|
36
|
+
"import": "./dist/languages/javascript.js",
|
|
37
|
+
"require": "./dist/languages/javascript.cjs"
|
|
38
|
+
},
|
|
39
|
+
"./java": {
|
|
40
|
+
"types": "./dist/languages/java.d.ts",
|
|
41
|
+
"import": "./dist/languages/java.js",
|
|
42
|
+
"require": "./dist/languages/java.cjs"
|
|
43
|
+
},
|
|
44
|
+
"./python": {
|
|
45
|
+
"types": "./dist/languages/python.d.ts",
|
|
46
|
+
"import": "./dist/languages/python.js",
|
|
47
|
+
"require": "./dist/languages/python.cjs"
|
|
48
|
+
},
|
|
49
|
+
"./rust": {
|
|
50
|
+
"types": "./dist/languages/rust.d.ts",
|
|
51
|
+
"import": "./dist/languages/rust.js",
|
|
52
|
+
"require": "./dist/languages/rust.cjs"
|
|
53
|
+
},
|
|
54
|
+
"./go": {
|
|
55
|
+
"types": "./dist/languages/go.d.ts",
|
|
56
|
+
"import": "./dist/languages/go.js",
|
|
57
|
+
"require": "./dist/languages/go.cjs"
|
|
58
|
+
},
|
|
59
|
+
"./html": {
|
|
60
|
+
"types": "./dist/languages/html.d.ts",
|
|
61
|
+
"import": "./dist/languages/html.js",
|
|
62
|
+
"require": "./dist/languages/html.cjs"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"files": [
|
|
66
|
+
"dist",
|
|
67
|
+
"LICENSE",
|
|
68
|
+
"README.md"
|
|
69
|
+
],
|
|
17
70
|
"scripts": {
|
|
18
|
-
"
|
|
71
|
+
"build": "tsup",
|
|
72
|
+
"check": "biome check . && tsc --noEmit && vitest run",
|
|
73
|
+
"format": "biome format --write .",
|
|
74
|
+
"lint": "biome check .",
|
|
75
|
+
"prepare": "husky",
|
|
76
|
+
"release": "semantic-release",
|
|
77
|
+
"test": "vitest run",
|
|
78
|
+
"typecheck": "tsc --noEmit"
|
|
79
|
+
},
|
|
80
|
+
"devDependencies": {
|
|
81
|
+
"@biomejs/biome": "^1.9.4",
|
|
82
|
+
"@commitlint/cli": "^19.6.1",
|
|
83
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
84
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
85
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
86
|
+
"@semantic-release/git": "^10.0.1",
|
|
87
|
+
"@semantic-release/github": "^10.3.5",
|
|
88
|
+
"@semantic-release/npm": "^12.0.2",
|
|
89
|
+
"@semantic-release/release-notes-generator": "^14.1.1",
|
|
90
|
+
"husky": "^9.1.7",
|
|
91
|
+
"semantic-release": "^24.2.0",
|
|
92
|
+
"tsup": "^8.3.5",
|
|
93
|
+
"typescript": "^5.7.2",
|
|
94
|
+
"vitest": "^2.1.8"
|
|
19
95
|
}
|
|
20
|
-
}
|
|
96
|
+
}
|