-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.53 KB
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
{
"name": "worldalphabets",
"version": "{{version}}",
"description": "Simple Node interface to WorldAlphabets data",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"type": "commonjs",
"exports": {
".": {
"browser": "./index.mjs",
"import": "./index.mjs",
"require": "./index.js"
},
"./index.esm.js": "./index.esm.js"
},
"scripts": {
"test": "jest",
"build": "node scripts/create_index.js && node scripts/generate_browser_modules.js && node scripts/generate_browser_freq.js && node scripts/generate_browser_index_mjs.js",
"dev": "npm run build && npm test",
"lint": "eslint .",
"prepare": "npm run build",
"test:browser": "node scripts/verify_browser_esmbuild.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/AACTools/WorldAlphabets.git"
},
"bugs": {
"url": "https://github.com/AACTools/WorldAlphabets/issues"
},
"homepage": "https://github.com/AACTools/WorldAlphabets#readme",
"keywords": [
"alphabets",
"language",
"world",
"frequency",
"letters",
"unicode",
"cldr",
"i18n",
"localization"
],
"author": "Will Wade <willwade@gmail.com>",
"license": "MIT",
"files": [
"index.js",
"index.mjs",
"index.esm.js",
"index.d.ts",
"keyboards.js",
"keyboards.d.ts",
"data/",
"!data/audio/",
"dist/"
],
"devDependencies": {
"@types/jest": "^29.5.4",
"eslint": "^8.57.0",
"jest": "^30.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.9.2"
}
}