-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
120 lines (120 loc) · 2.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@indic-transliteration/sanscript",
"version": "1.3.1",
"description": "Sanscript is a transliteration library for Indian languages. It supports the most popular Indian scripts and several different romanization schemes. Although Sanscript focuses on Sanskrit transliteration, it has partial support for other languages and is easy to extend.",
"main": "sanscript.js",
"types": "./types/sanscript.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "node scripts/build.js",
"dist": "npm run build && npm run transpile",
"lint": "eslint \"**/*.js\"",
"prepare": "npm run lint && npm run validate && npm run dist && npm run test",
"test": "qunit",
"transpile": "babel sanscript.es6.js --out-file sanscript.js",
"validate": "ajv validate -s src/sanscript.schema.json -d 'src/schemes/*/*.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indic-transliteration/sanscript.js.git"
},
"keywords": [
"ahom",
"assamese",
"avestan",
"balinese",
"bengali",
"bhaisuki",
"brahmi",
"brahmi_tamil",
"burmese",
"chakma",
"cham",
"cyrillic",
"devanagari",
"dogra",
"gondi_gunjala",
"gondi_masaram",
"grantha",
"grantha_pandya",
"gujarati",
"gurmukhi",
"javanese",
"kannada",
"khamti_shan",
"kharoshti",
"khmer",
"khom_thai",
"khudawadi",
"kolkata",
"lao",
"lao_pali",
"lepcha",
"limbu",
"mahajani",
"malayalam",
"manipuri",
"marchen",
"modi",
"mon",
"mro",
"multani",
"newa",
"ol_chiki",
"oriya",
"persian_old",
"phags_pa",
"ranjana",
"rejang",
"rohingya",
"sanskritOCR",
"shan",
"sharada",
"siddham",
"sinhala",
"slp1",
"sora_sompeng",
"sundanese",
"tai_laing",
"takri",
"tamil",
"tamil_extended",
"tamil_superscripted",
"telugu",
"thai",
"tibetan",
"tirhuta_maithili",
"urdu",
"vattelutu",
"velthuis",
"wancho",
"warang_citi",
"wx",
"zanbazar_square",
"Harvard-Kyoto",
"International Alphabet of Sanskrit Transliteration IAST",
"ISO 15919",
"National Library at Kolkata",
"Sanskrit Library Phonetic"
],
"author": "Arun Prasad and Sanskrit coders",
"license": "MIT",
"bugs": {
"url": "https://github.com/indic-transliteration/sanscript.js/issues"
},
"homepage": "https://github.com/indic-transliteration/sanscript.js#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"ajv-cli": "^5.0.0",
"eslint": "^7.32.0",
"qunit": "^2.19.4"
},
"dependencies": {
"@indic-transliteration/common_maps": "^1.0.2",
"toml": "^2.3.6"
}
}