dev-dict 0.7.2 → 0.7.4
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 +168 -123
- package/dist/common/index.d.ts +5 -3
- package/dist/common/index.d.ts.map +1 -1
- package/dist/data/sources/index.d.ts +0 -16
- package/dist/data/sources/index.d.ts.map +1 -1
- package/dist/data/tags/index.d.ts.map +1 -1
- package/dist/data/terms/aes.d.ts +22 -0
- package/dist/data/terms/aes.d.ts.map +1 -1
- package/dist/data/terms/index.d.ts +88 -0
- package/dist/data/terms/index.d.ts.map +1 -1
- package/dist/data/terms/react.d.ts +12 -0
- package/dist/data/terms/react.d.ts.map +1 -1
- package/dist/data/terms/typescript.d.ts +10 -0
- package/dist/data/terms/typescript.d.ts.map +1 -1
- package/dist/data/types/index.d.ts.map +1 -1
- package/dist/dev-dict.min.js +1 -1
- package/dist/dev-dict.min.js.map +1 -1
- package/dist/helpers-CGZRMw3X.js +72 -0
- package/dist/helpers-CGZRMw3X.js.map +1 -0
- package/dist/index.js +62 -62
- package/dist/index.js.map +1 -1
- package/dist/{terms-entry-DZ6rgq8v.js → terms-entry-CupmUbNe.js} +463 -455
- package/dist/terms-entry-CupmUbNe.js.map +1 -0
- package/dist/terms-entry.js +1 -1
- package/dist/types/index.d.ts +10 -4
- package/dist/types/index.d.ts.map +1 -1
- package/dist/umd.d.ts +51 -23
- package/dist/umd.d.ts.map +1 -1
- package/dist/utils/helpers.d.ts +40 -0
- package/dist/utils/helpers.d.ts.map +1 -0
- package/dist/utils/index.d.ts +2 -30
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/utils.d.ts +32 -0
- package/dist/utils/utils.d.ts.map +1 -0
- package/dist/utils-entry.d.ts +1 -2
- package/dist/utils-entry.d.ts.map +1 -1
- package/dist/utils-entry.js +65 -94
- package/dist/utils-entry.js.map +1 -1
- package/package.json +25 -12
- package/dist/data/sources/inferred.d.ts +0 -10
- package/dist/data/sources/inferred.d.ts.map +0 -1
- package/dist/helpers.d.ts +0 -33
- package/dist/helpers.d.ts.map +0 -1
- package/dist/index-ByeM8-df.js +0 -54
- package/dist/index-ByeM8-df.js.map +0 -1
- package/dist/terms-entry-DZ6rgq8v.js.map +0 -1
package/README.md
CHANGED
|
@@ -1,40 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="./demo/public/logo.png" alt="dev-dict" width="125">
|
|
3
|
+
</p>
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+
# dev-dict
|
|
4
6
|
|
|
5
7
|
[](https://www.npmjs.com/package/dev-dict)
|
|
6
|
-
[](https://www.npmjs.com/package/dev-dict)
|
|
7
8
|
[](https://bundlephobia.com/package/dev-dict)
|
|
8
|
-
[](https://opensource.org/licenses/MIT)
|
|
9
|
-
[](./CONTRIBUTING.md)
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
**[View Dictionary (Demo)](https://kyco.github.io/dev-dict/)**
|
|
10
|
+
A community-driven collection of software development terms with explanations in multiple languages. Perfect for building multilingual developer tools, documentation sites, and educational platforms.
|
|
14
11
|
|
|
12
|
+
**[Browse All Terms](https://kyco.github.io/dev-dict/)**
|
|
15
13
|
|
|
16
14
|
## Features
|
|
17
15
|
|
|
18
|
-
- **
|
|
19
|
-
- **
|
|
20
|
-
- **Flexible
|
|
21
|
-
- **Comprehensive** - Covering frameworks, libraries, languages, tools, and concepts
|
|
16
|
+
- **Type-Safe** - Full TypeScript support
|
|
17
|
+
- **Multilingual** - English (US/GB), German, and growing
|
|
18
|
+
- **Flexible** - Access localised strings or raw translation objects
|
|
22
19
|
- **Lightweight** - Tree-shakeable ESM and UMD builds
|
|
23
|
-
- **Extensible** - Easy to contribute new terms and translations
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
## Browse Available Terms
|
|
27
|
-
|
|
28
|
-
Explore the full catalogue of terms, types, and tags:
|
|
29
|
-
|
|
30
|
-
- **[Terms](./docs/TERMS.md)** - All software development terms
|
|
31
|
-
- **[Types](./docs/TYPES.md)** - Term categories (library, framework, etc.)
|
|
32
|
-
- **[Tags](./docs/TAGS.md)** - Additional classifications (frontend, backend, etc.)
|
|
33
|
-
|
|
34
20
|
|
|
35
|
-
##
|
|
21
|
+
## Installation
|
|
36
22
|
|
|
37
|
-
###
|
|
23
|
+
### via Package Manager
|
|
38
24
|
|
|
39
25
|
```bash
|
|
40
26
|
npm install dev-dict
|
|
@@ -44,168 +30,227 @@ pnpm add dev-dict
|
|
|
44
30
|
yarn add dev-dict
|
|
45
31
|
```
|
|
46
32
|
|
|
47
|
-
###
|
|
33
|
+
### via CDN (unpkg)
|
|
34
|
+
|
|
35
|
+
```html
|
|
36
|
+
<script src="https://unpkg.com/dev-dict@latest/dist/dev-dict.min.js"></script>
|
|
37
|
+
<script>
|
|
38
|
+
// Access the library via the global 'devdict' object
|
|
39
|
+
const { terms, types, tags, locales, utils } = devdict
|
|
40
|
+
|
|
41
|
+
// Get all terms for a locale
|
|
42
|
+
const dictionary = utils.getTerms({ terms, locale: 'en-US' })
|
|
43
|
+
|
|
44
|
+
console.log(dictionary)
|
|
45
|
+
</script>
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Quick Start
|
|
49
|
+
|
|
50
|
+
### Option 1: Full Dictionary
|
|
51
|
+
|
|
52
|
+
Import the complete dictionary to access all terms.
|
|
48
53
|
|
|
49
54
|
```typescript
|
|
50
|
-
import {
|
|
55
|
+
import { terms } from 'dev-dict'
|
|
56
|
+
import { getTerms, getTags, getTypes } from 'dev-dict/utils'
|
|
51
57
|
|
|
52
|
-
// Get a
|
|
53
|
-
const
|
|
54
|
-
console.log(react.label) // "JavaScript Library"
|
|
55
|
-
console.log(react.definition) // "A JavaScript library for building user interfaces..."
|
|
58
|
+
// Get all terms for a locale
|
|
59
|
+
const dictionary = getTerms({ terms, locale: 'en-US' })
|
|
56
60
|
|
|
57
|
-
// Get
|
|
58
|
-
const
|
|
59
|
-
|
|
61
|
+
// Get types and tags
|
|
62
|
+
const types = getTypes({ terms, locale: 'en-US' })
|
|
63
|
+
const tags = getTags({ terms, locale: 'en-US' })
|
|
60
64
|
|
|
61
|
-
//
|
|
62
|
-
|
|
63
|
-
console.log(
|
|
64
|
-
console.log(
|
|
65
|
+
// Display terms
|
|
66
|
+
dictionary.forEach(term => {
|
|
67
|
+
console.log(term.name) // "React"
|
|
68
|
+
console.log(term.label) // "JavaScript Library"
|
|
69
|
+
})
|
|
65
70
|
```
|
|
66
71
|
|
|
72
|
+
### Option 2: Selected Terms Only
|
|
73
|
+
|
|
74
|
+
Import only the specific terms you need for better tree-shaking and smaller bundle size.
|
|
75
|
+
|
|
76
|
+
```typescript
|
|
77
|
+
import { react, typescript, node_js } from 'dev-dict/terms'
|
|
78
|
+
import { getTerms } from 'dev-dict/utils'
|
|
79
|
+
|
|
80
|
+
// Create a custom dictionary with only the terms you need
|
|
81
|
+
const terms = { react, typescript, node_js }
|
|
82
|
+
|
|
83
|
+
// Then use the same helper functions as Option 1
|
|
84
|
+
const dictionary = getTerms({ terms, locale: 'en-US' })
|
|
85
|
+
```
|
|
67
86
|
|
|
68
87
|
## API Reference
|
|
69
88
|
|
|
70
|
-
###
|
|
89
|
+
### Import Data
|
|
90
|
+
|
|
91
|
+
```typescript
|
|
92
|
+
import { terms, types, tags, locales } from 'dev-dict'
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
- `terms` - Raw terms dictionary
|
|
96
|
+
- `types` - Type constants and definitions
|
|
97
|
+
- `tags` - Tag constants and definitions
|
|
98
|
+
- `locales` - Locale constants
|
|
71
99
|
|
|
72
|
-
|
|
100
|
+
### Helper Functions
|
|
101
|
+
|
|
102
|
+
Import from `dev-dict/utils`:
|
|
73
103
|
|
|
74
104
|
```typescript
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
console.log(reactEn.label) // "JavaScript Library"
|
|
105
|
+
import { getTerms, getTermsDict, getTypes, getTypesDict, getTags, getTagsDict } from 'dev-dict/utils'
|
|
106
|
+
```
|
|
78
107
|
|
|
79
|
-
|
|
80
|
-
console.log(reactDe.label) // "JavaScript-Bibliothek"
|
|
108
|
+
#### `getTermsDict(options)`
|
|
81
109
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
110
|
+
Get all terms as a dictionary object.
|
|
111
|
+
|
|
112
|
+
```typescript
|
|
113
|
+
const termsDict = getTermsDict({
|
|
114
|
+
terms,
|
|
115
|
+
locale: 'en-US',
|
|
116
|
+
populateEmpty: true
|
|
117
|
+
})
|
|
118
|
+
// { react: { id: "react", name: "React", ... }, vue: { id: "vue", name: "Vue", ... } }
|
|
86
119
|
```
|
|
87
120
|
|
|
88
121
|
**Options:**
|
|
89
|
-
- `
|
|
122
|
+
- `terms: TTermsDict` - The terms dictionary (required)
|
|
90
123
|
- `locale?: string` - Target locale (default: `'en-US'`)
|
|
91
|
-
- `
|
|
92
|
-
- `useFallback?: boolean` - Fall back to en-US for missing translations (default: `true`)
|
|
124
|
+
- `populateEmpty?: boolean` - Populate empty locale records with en-US values (default: `true`)
|
|
93
125
|
|
|
94
|
-
|
|
126
|
+
**Returns:** `Partial<TTermsDictLocalized>` - Dictionary of localised terms
|
|
127
|
+
|
|
128
|
+
#### `getTerms(options)`
|
|
95
129
|
|
|
96
130
|
Get all terms as an array.
|
|
97
131
|
|
|
98
132
|
```typescript
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
const termsRaw = getTerms({ localized: false })
|
|
105
|
-
console.log(termsRaw)
|
|
106
|
-
// [{ id: "react", label: { "en-US": "...", "de-DE": "..." } }, ...]
|
|
133
|
+
const dictionary = getTerms({
|
|
134
|
+
terms,
|
|
135
|
+
locale: 'en-US',
|
|
136
|
+
populateEmpty: true
|
|
137
|
+
})
|
|
107
138
|
```
|
|
108
139
|
|
|
109
140
|
**Options:**
|
|
141
|
+
- `terms: TTermsDict` - The terms dictionary (required)
|
|
110
142
|
- `locale?: string` - Target locale (default: `'en-US'`)
|
|
111
|
-
- `
|
|
112
|
-
|
|
143
|
+
- `populateEmpty?: boolean` - Populate empty locale records with en-US values (default: `true`)
|
|
144
|
+
|
|
145
|
+
**Returns:** `TTermLocalized[]` - Array of localised terms
|
|
113
146
|
|
|
114
|
-
|
|
147
|
+
#### `getTypesDict(options)`
|
|
115
148
|
|
|
116
|
-
Get
|
|
149
|
+
Get all term types as a dictionary object.
|
|
117
150
|
|
|
118
151
|
```typescript
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
//
|
|
124
|
-
const dictRaw = getDict({ localized: false })
|
|
125
|
-
console.log(dictRaw.react.label)
|
|
126
|
-
// { "en-US": "JavaScript Library", "de-DE": "JavaScript-Bibliothek", ... }
|
|
152
|
+
const typesDict = getTypesDict({
|
|
153
|
+
terms,
|
|
154
|
+
locale: 'en-US'
|
|
155
|
+
})
|
|
156
|
+
// { library: { id: "library", name: "Library" }, framework: { id: "framework", name: "Framework" }, ... }
|
|
127
157
|
```
|
|
128
158
|
|
|
129
|
-
|
|
130
|
-
- `locale?: string` - Target locale (default: `'en-US'`)
|
|
131
|
-
- `localized?: boolean` - Return localised strings (default: `true`)
|
|
132
|
-
- `useFallback?: boolean` - Fall back to en-US for missing translations (default: `true`)
|
|
133
|
-
|
|
134
|
-
### `getTypes(options)`
|
|
159
|
+
#### `getTypes(options)`
|
|
135
160
|
|
|
136
|
-
Get all term types
|
|
161
|
+
Get all term types as an array.
|
|
137
162
|
|
|
138
163
|
```typescript
|
|
139
|
-
const types = getTypes({
|
|
140
|
-
|
|
164
|
+
const types = getTypes({
|
|
165
|
+
terms,
|
|
166
|
+
locale: 'en-US'
|
|
167
|
+
})
|
|
141
168
|
// [{ id: "library", name: "Library" }, { id: "framework", name: "Framework" }, ...]
|
|
142
169
|
```
|
|
143
170
|
|
|
144
|
-
|
|
171
|
+
#### `getTagsDict(options)`
|
|
172
|
+
|
|
173
|
+
Get all term tags as a dictionary object.
|
|
174
|
+
|
|
175
|
+
```typescript
|
|
176
|
+
const tagsDict = getTagsDict({
|
|
177
|
+
terms,
|
|
178
|
+
locale: 'en-US'
|
|
179
|
+
})
|
|
180
|
+
// { frontend: { id: "frontend", name: "Frontend" }, backend: { id: "backend", name: "Backend" }, ... }
|
|
181
|
+
```
|
|
182
|
+
|
|
183
|
+
#### `getTags(options)`
|
|
145
184
|
|
|
146
|
-
Get all term tags
|
|
185
|
+
Get all term tags as an array.
|
|
147
186
|
|
|
148
187
|
```typescript
|
|
149
|
-
const tags = getTags({
|
|
150
|
-
|
|
188
|
+
const tags = getTags({
|
|
189
|
+
terms,
|
|
190
|
+
locale: 'en-US'
|
|
191
|
+
})
|
|
151
192
|
// [{ id: "frontend", name: "Frontend" }, { id: "backend", name: "Backend" }, ...]
|
|
152
193
|
```
|
|
153
194
|
|
|
195
|
+
### Term Structure
|
|
196
|
+
|
|
197
|
+
```typescript
|
|
198
|
+
{
|
|
199
|
+
id: string // Unique identifier
|
|
200
|
+
name: string // Display name
|
|
201
|
+
altName?: string // Optional abbreviation/short name
|
|
202
|
+
label: string // Descriptive type (e.g., "UI Library")
|
|
203
|
+
definition: string // Full explanation
|
|
204
|
+
type: Array<{ // Categories
|
|
205
|
+
id: string
|
|
206
|
+
name: string
|
|
207
|
+
}>
|
|
208
|
+
tags: Array<{ // Additional classifications
|
|
209
|
+
id: string
|
|
210
|
+
name: string
|
|
211
|
+
}>
|
|
212
|
+
links?: { // Optional external links
|
|
213
|
+
website: string
|
|
214
|
+
github?: string
|
|
215
|
+
npm?: string
|
|
216
|
+
wikipedia?: string
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
```
|
|
154
220
|
|
|
155
221
|
## Supported Languages
|
|
156
222
|
|
|
157
223
|
| Locale | Language | Status |
|
|
158
224
|
|--------|----------|--------|
|
|
159
|
-
| `en-US` | English (United States) | ✅ Primary
|
|
225
|
+
| `en-US` | English (United States) | ✅ Primary |
|
|
160
226
|
| `en-GB` | English (Great Britain) | ✅ Supported |
|
|
161
227
|
| `de-DE` | German (Germany) | ✅ Supported |
|
|
162
228
|
|
|
163
|
-
Want to add a
|
|
229
|
+
Want to add a language? See [CONTRIBUTING.md](./CONTRIBUTING.md#adding-a-new-language)
|
|
164
230
|
|
|
231
|
+
## Browse Terms
|
|
165
232
|
|
|
166
|
-
|
|
233
|
+
- **[Terms](./docs/TERMS.md)** - All software development terms
|
|
234
|
+
- **[Types](./docs/TYPES.md)** - Term categories
|
|
235
|
+
- **[Tags](./docs/TAGS.md)** - Additional classifications
|
|
167
236
|
|
|
168
|
-
|
|
169
|
-
- Add a new term
|
|
170
|
-
- Provide translations
|
|
171
|
-
- Fix errors or typos
|
|
172
|
-
- Suggest improvements
|
|
237
|
+
## Contributing
|
|
173
238
|
|
|
174
|
-
|
|
239
|
+
Contributions welcome! Add terms, provide translations, fix errors, or suggest improvements.
|
|
175
240
|
|
|
241
|
+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for details.
|
|
176
242
|
|
|
177
243
|
## Development
|
|
178
244
|
|
|
179
245
|
```bash
|
|
180
|
-
# Install dependencies
|
|
181
|
-
pnpm
|
|
182
|
-
|
|
183
|
-
# Build
|
|
184
|
-
pnpm build
|
|
185
|
-
|
|
186
|
-
# Run demo site locally
|
|
187
|
-
pnpm demo:dev
|
|
188
|
-
|
|
189
|
-
# Build demo site
|
|
190
|
-
pnpm demo:build
|
|
191
|
-
|
|
192
|
-
# Preview demo build
|
|
193
|
-
pnpm demo:preview
|
|
194
|
-
|
|
195
|
-
# Lint code
|
|
196
|
-
npx eslint .
|
|
197
|
-
|
|
198
|
-
# Format code
|
|
199
|
-
npx prettier --write .
|
|
246
|
+
pnpm install # Install dependencies
|
|
247
|
+
pnpm build # Build library
|
|
248
|
+
pnpm demo:dev # Run demo site (http://localhost:5173)
|
|
249
|
+
pnpm demo:build # Build demo site
|
|
200
250
|
```
|
|
201
251
|
|
|
202
|
-
|
|
203
|
-
|
|
252
|
+
See [CLAUDE.md](./.claude/CLAUDE.md) for detailed development guidance.
|
|
204
253
|
|
|
205
|
-
##
|
|
254
|
+
## License
|
|
206
255
|
|
|
207
|
-
|
|
208
|
-
- **Educational Platforms** - Teach developers in their native language
|
|
209
|
-
- **Developer Tools** - Add contextual help for technical terms
|
|
210
|
-
- **Content Management** - Maintain consistent terminology across translations
|
|
211
|
-
- **IDE Extensions** - Provide inline term explanations
|
|
256
|
+
MIT
|
package/dist/common/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
export declare const MISC: {
|
|
1
|
+
export declare const MISC: {
|
|
2
|
+
TERM_INTERPOLATION_KEYS: string[];
|
|
3
|
+
};
|
|
2
4
|
export declare const CONFIG: {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
DEFAULT_LOCALE: "en-US";
|
|
6
|
+
POPULATE_EMPTY: boolean;
|
|
5
7
|
};
|
|
6
8
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/common/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI;;CAEhB,CAAA;AAED,eAAO,MAAM,MAAM;;;CAGlB,CAAA"}
|
|
@@ -15,14 +15,6 @@ export declare const RAW_SOURCES: {
|
|
|
15
15
|
readonly "de-DE": "Gemeinschaftskonsens";
|
|
16
16
|
};
|
|
17
17
|
};
|
|
18
|
-
readonly inferred: {
|
|
19
|
-
readonly id: "inferred";
|
|
20
|
-
readonly name: {
|
|
21
|
-
readonly "en-US": "Inferred from Context";
|
|
22
|
-
readonly "en-GB": "en-US";
|
|
23
|
-
readonly "de-DE": "Aus dem Kontext abgeleitet";
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
18
|
readonly official_website: {
|
|
27
19
|
readonly id: "official_website";
|
|
28
20
|
readonly name: {
|
|
@@ -57,14 +49,6 @@ export declare const SOURCES: {
|
|
|
57
49
|
readonly "de-DE": "Gemeinschaftskonsens";
|
|
58
50
|
};
|
|
59
51
|
};
|
|
60
|
-
readonly inferred: {
|
|
61
|
-
readonly id: "inferred";
|
|
62
|
-
readonly name: {
|
|
63
|
-
readonly "en-US": "Inferred from Context";
|
|
64
|
-
readonly "en-GB": "en-US";
|
|
65
|
-
readonly "de-DE": "Aus dem Kontext abgeleitet";
|
|
66
|
-
};
|
|
67
|
-
};
|
|
68
52
|
readonly official_website: {
|
|
69
53
|
readonly id: "official_website";
|
|
70
54
|
readonly name: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/data/sources/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/data/sources/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAKd,CAAA;AAEV,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgF,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/data/tags/index.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYX,CAAA;AAEV,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/data/tags/index.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAYX,CAAA;AAEV,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA6E,CAAA"}
|
package/dist/data/terms/aes.d.ts
CHANGED
|
@@ -43,6 +43,28 @@ declare const _default: {
|
|
|
43
43
|
readonly "de-DE": "Kryptografie";
|
|
44
44
|
};
|
|
45
45
|
}];
|
|
46
|
+
readonly links: {
|
|
47
|
+
readonly website: "https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197-upd1.pdf";
|
|
48
|
+
readonly wikipedia: "https://en.wikipedia.org/wiki/Advanced_Encryption_Standard";
|
|
49
|
+
};
|
|
50
|
+
readonly sources: {
|
|
51
|
+
readonly label: {
|
|
52
|
+
readonly id: "community";
|
|
53
|
+
readonly name: {
|
|
54
|
+
readonly "en-US": "Community Consensus";
|
|
55
|
+
readonly "en-GB": "en-US";
|
|
56
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
57
|
+
};
|
|
58
|
+
};
|
|
59
|
+
readonly definition: {
|
|
60
|
+
readonly id: "ai_generated";
|
|
61
|
+
readonly name: {
|
|
62
|
+
readonly "en-US": "AI Generated";
|
|
63
|
+
readonly "en-GB": "en-US";
|
|
64
|
+
readonly "de-DE": "KI-generiert";
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
};
|
|
46
68
|
};
|
|
47
69
|
export default _default;
|
|
48
70
|
//# sourceMappingURL=aes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"aes.d.ts","sourceRoot":"","sources":["../../../src/data/terms/aes.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"aes.d.ts","sourceRoot":"","sources":["../../../src/data/terms/aes.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,wBAwC0B"}
|
|
@@ -44,6 +44,28 @@ export declare const RAW_TERMS: {
|
|
|
44
44
|
readonly "de-DE": "Kryptografie";
|
|
45
45
|
};
|
|
46
46
|
}];
|
|
47
|
+
readonly links: {
|
|
48
|
+
readonly website: "https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197-upd1.pdf";
|
|
49
|
+
readonly wikipedia: "https://en.wikipedia.org/wiki/Advanced_Encryption_Standard";
|
|
50
|
+
};
|
|
51
|
+
readonly sources: {
|
|
52
|
+
readonly label: {
|
|
53
|
+
readonly id: "community";
|
|
54
|
+
readonly name: {
|
|
55
|
+
readonly "en-US": "Community Consensus";
|
|
56
|
+
readonly "en-GB": "en-US";
|
|
57
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
readonly definition: {
|
|
61
|
+
readonly id: "ai_generated";
|
|
62
|
+
readonly name: {
|
|
63
|
+
readonly "en-US": "AI Generated";
|
|
64
|
+
readonly "en-GB": "en-US";
|
|
65
|
+
readonly "de-DE": "KI-generiert";
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
47
69
|
};
|
|
48
70
|
readonly agile: {
|
|
49
71
|
readonly id: "agile";
|
|
@@ -2647,13 +2669,17 @@ export declare const RAW_TERMS: {
|
|
|
2647
2669
|
readonly id: "react";
|
|
2648
2670
|
readonly name: {
|
|
2649
2671
|
readonly "en-US": "React";
|
|
2672
|
+
readonly "en-GB": "en-US";
|
|
2673
|
+
readonly "de-DE": "en-US";
|
|
2650
2674
|
};
|
|
2651
2675
|
readonly label: {
|
|
2652
2676
|
readonly "en-US": "JavaScript Library";
|
|
2677
|
+
readonly "en-GB": "en-US";
|
|
2653
2678
|
readonly "de-DE": "JavaScript-Bibliothek";
|
|
2654
2679
|
};
|
|
2655
2680
|
readonly definition: {
|
|
2656
2681
|
readonly "en-US": "A JavaScript library for building component-based user interfaces.";
|
|
2682
|
+
readonly "en-GB": "en-US";
|
|
2657
2683
|
readonly "de-DE": "Eine JavaScript-Bibliothek zum Erstellen komponentenbasierter Benutzeroberflächen.";
|
|
2658
2684
|
};
|
|
2659
2685
|
readonly type: [{
|
|
@@ -2707,6 +2733,14 @@ export declare const RAW_TERMS: {
|
|
|
2707
2733
|
readonly wikipedia: "https://en.wikipedia.org/wiki/React_(software)";
|
|
2708
2734
|
};
|
|
2709
2735
|
readonly sources: {
|
|
2736
|
+
readonly label: {
|
|
2737
|
+
readonly id: "community";
|
|
2738
|
+
readonly name: {
|
|
2739
|
+
readonly "en-US": "Community Consensus";
|
|
2740
|
+
readonly "en-GB": "en-US";
|
|
2741
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
2742
|
+
};
|
|
2743
|
+
};
|
|
2710
2744
|
readonly definition: {
|
|
2711
2745
|
readonly id: "official_website";
|
|
2712
2746
|
readonly name: {
|
|
@@ -3311,6 +3345,8 @@ export declare const RAW_TERMS: {
|
|
|
3311
3345
|
readonly id: "typescript";
|
|
3312
3346
|
readonly name: {
|
|
3313
3347
|
readonly "en-US": "TypeScript";
|
|
3348
|
+
readonly "en-GB": "en-US";
|
|
3349
|
+
readonly "de-DE": "en-US";
|
|
3314
3350
|
};
|
|
3315
3351
|
readonly label: {
|
|
3316
3352
|
readonly "en-US": "High-Level Programming Language";
|
|
@@ -3363,6 +3399,14 @@ export declare const RAW_TERMS: {
|
|
|
3363
3399
|
readonly website: "https://www.typescriptlang.org";
|
|
3364
3400
|
};
|
|
3365
3401
|
readonly sources: {
|
|
3402
|
+
readonly label: {
|
|
3403
|
+
readonly id: "community";
|
|
3404
|
+
readonly name: {
|
|
3405
|
+
readonly "en-US": "Community Consensus";
|
|
3406
|
+
readonly "en-GB": "en-US";
|
|
3407
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
3408
|
+
};
|
|
3409
|
+
};
|
|
3366
3410
|
readonly definition: {
|
|
3367
3411
|
readonly id: "official_website";
|
|
3368
3412
|
readonly name: {
|
|
@@ -3723,6 +3767,28 @@ export declare const TERMS: {
|
|
|
3723
3767
|
readonly "de-DE": "Kryptografie";
|
|
3724
3768
|
};
|
|
3725
3769
|
}];
|
|
3770
|
+
readonly links: {
|
|
3771
|
+
readonly website: "https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197-upd1.pdf";
|
|
3772
|
+
readonly wikipedia: "https://en.wikipedia.org/wiki/Advanced_Encryption_Standard";
|
|
3773
|
+
};
|
|
3774
|
+
readonly sources: {
|
|
3775
|
+
readonly label: {
|
|
3776
|
+
readonly id: "community";
|
|
3777
|
+
readonly name: {
|
|
3778
|
+
readonly "en-US": "Community Consensus";
|
|
3779
|
+
readonly "en-GB": "en-US";
|
|
3780
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
3781
|
+
};
|
|
3782
|
+
};
|
|
3783
|
+
readonly definition: {
|
|
3784
|
+
readonly id: "ai_generated";
|
|
3785
|
+
readonly name: {
|
|
3786
|
+
readonly "en-US": "AI Generated";
|
|
3787
|
+
readonly "en-GB": "en-US";
|
|
3788
|
+
readonly "de-DE": "KI-generiert";
|
|
3789
|
+
};
|
|
3790
|
+
};
|
|
3791
|
+
};
|
|
3726
3792
|
};
|
|
3727
3793
|
readonly agile: {
|
|
3728
3794
|
readonly id: "agile";
|
|
@@ -6326,13 +6392,17 @@ export declare const TERMS: {
|
|
|
6326
6392
|
readonly id: "react";
|
|
6327
6393
|
readonly name: {
|
|
6328
6394
|
readonly "en-US": "React";
|
|
6395
|
+
readonly "en-GB": "en-US";
|
|
6396
|
+
readonly "de-DE": "en-US";
|
|
6329
6397
|
};
|
|
6330
6398
|
readonly label: {
|
|
6331
6399
|
readonly "en-US": "JavaScript Library";
|
|
6400
|
+
readonly "en-GB": "en-US";
|
|
6332
6401
|
readonly "de-DE": "JavaScript-Bibliothek";
|
|
6333
6402
|
};
|
|
6334
6403
|
readonly definition: {
|
|
6335
6404
|
readonly "en-US": "A JavaScript library for building component-based user interfaces.";
|
|
6405
|
+
readonly "en-GB": "en-US";
|
|
6336
6406
|
readonly "de-DE": "Eine JavaScript-Bibliothek zum Erstellen komponentenbasierter Benutzeroberflächen.";
|
|
6337
6407
|
};
|
|
6338
6408
|
readonly type: [{
|
|
@@ -6386,6 +6456,14 @@ export declare const TERMS: {
|
|
|
6386
6456
|
readonly wikipedia: "https://en.wikipedia.org/wiki/React_(software)";
|
|
6387
6457
|
};
|
|
6388
6458
|
readonly sources: {
|
|
6459
|
+
readonly label: {
|
|
6460
|
+
readonly id: "community";
|
|
6461
|
+
readonly name: {
|
|
6462
|
+
readonly "en-US": "Community Consensus";
|
|
6463
|
+
readonly "en-GB": "en-US";
|
|
6464
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
6465
|
+
};
|
|
6466
|
+
};
|
|
6389
6467
|
readonly definition: {
|
|
6390
6468
|
readonly id: "official_website";
|
|
6391
6469
|
readonly name: {
|
|
@@ -6990,6 +7068,8 @@ export declare const TERMS: {
|
|
|
6990
7068
|
readonly id: "typescript";
|
|
6991
7069
|
readonly name: {
|
|
6992
7070
|
readonly "en-US": "TypeScript";
|
|
7071
|
+
readonly "en-GB": "en-US";
|
|
7072
|
+
readonly "de-DE": "en-US";
|
|
6993
7073
|
};
|
|
6994
7074
|
readonly label: {
|
|
6995
7075
|
readonly "en-US": "High-Level Programming Language";
|
|
@@ -7042,6 +7122,14 @@ export declare const TERMS: {
|
|
|
7042
7122
|
readonly website: "https://www.typescriptlang.org";
|
|
7043
7123
|
};
|
|
7044
7124
|
readonly sources: {
|
|
7125
|
+
readonly label: {
|
|
7126
|
+
readonly id: "community";
|
|
7127
|
+
readonly name: {
|
|
7128
|
+
readonly "en-US": "Community Consensus";
|
|
7129
|
+
readonly "en-GB": "en-US";
|
|
7130
|
+
readonly "de-DE": "Gemeinschaftskonsens";
|
|
7131
|
+
};
|
|
7132
|
+
};
|
|
7045
7133
|
readonly definition: {
|
|
7046
7134
|
readonly id: "official_website";
|
|
7047
7135
|
readonly name: {
|