forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.98 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
{
"name": "@cspell/dict-ar",
"version": "1.1.4",
"description": "Arabic dictionary for CSpell.",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "cross-env NODE_OPTIONS=--max_old_space_size=12288 cspell-tools-cli build && pnpm run gen-checksum",
"checksum": "cspell-tools-cli shasum -c checksum.txt",
"conditional-build": "pnpm run --silent checksum || pnpm run build",
"lint": "pnpm prettier -w \"**/*.{md,json}\"",
"gen-checksum": "cspell-tools-cli shasum -u checksum.txt --list-file source-files.txt source-dependencies.txt",
"test-ar": "pipe-cmds \"hunspell-reader words -m 0 -n 1000 \\\"src/ayaspell/ar.dic\\\"\" \"cspell -c ./cspell-ext.json \\\"--locale=ar\\\" \\\"--languageId=*\\\" stdin\"",
"test-samples": "cspell -c ./cspell-ext.json --locale=ar,en \"samples/**\"",
"test": "pnpm run test-ar && pnpm run test-samples",
"sync": "bash ./scripts/sync.sh && pnpm lint",
"prepare:dictionary": "cspell-tools-cli gzip \"*.trie\"",
"prepublishOnly": "pnpm run conditional-build && pnpm test"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/ar"
},
"keywords": [
"cspell",
"cspell-ext",
"ar",
"Arabic",
"dictionary",
"spelling"
],
"author": "Street Side Software <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/ar#readme",
"comment-devDependencies": {
"ayaspell": "https://github.com/linuxscout/ayaspell"
},
"dependencies": {},
"files": [
"src/ayaspell/COPYING",
"src/ayaspell/README.md",
"ar.trie.gz",
"cspell-ext.json",
"*.js",
"*.d.ts"
]
}