wikitongues-db 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,57 @@
1
+ {
2
+ "name": "wikitongues-db",
3
+ "version": "0.1.0",
4
+ "description": "Lightweight, zero-dependency database and query library mapping ISO 639-3 and BCP 47 language codes to Wikitongues oral history video recordings.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./data": {
15
+ "types": "./dist/dataset.d.ts",
16
+ "import": "./dist/dataset.mjs",
17
+ "require": "./dist/dataset.js",
18
+ "default": "./data/processed/wikitongues_normalized.json"
19
+ },
20
+ "./package.json": "./package.json"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "data/processed/wikitongues_normalized.json",
25
+ "data/processed/wikitongues_normalized.jsonl",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "scripts": {
30
+ "build": "tsup",
31
+ "test": "vitest run",
32
+ "typecheck": "tsc --noEmit",
33
+ "examples": "tsx examples.ts",
34
+ "prepublishOnly": "npm run build && npm test"
35
+ },
36
+ "keywords": [
37
+ "wikitongues",
38
+ "languages",
39
+ "iso639-3",
40
+ "bcp47",
41
+ "glottolog",
42
+ "linguistics",
43
+ "oral-history",
44
+ "videos",
45
+ "dataset",
46
+ "search"
47
+ ],
48
+ "author": "Marin Decanini",
49
+ "license": "MIT",
50
+ "devDependencies": {
51
+ "@types/node": "^22.13.9",
52
+ "tsup": "^8.4.0",
53
+ "tsx": "^4.23.13",
54
+ "typescript": "^5.7.3",
55
+ "vitest": "^3.0.8"
56
+ }
57
+ }