forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "@cspell/dict-da-dk",
"version": "3.0.0",
"description": "Danish dictionary for CSpell.",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "cspell-tools-cli build",
"sync": "pnpm cpy \"node_modules/dictionary-da/**\" src/hunspell",
"conditional-build": "pnpm sync && pnpm build --conditional",
"test-de": "hunspell-reader words -n 1000 \"src/hunspell/index.dic\" | cspell -v -c ./cspell-ext.json --local=da-DK --languageId=* stdin",
"test-samples": "cspell -c ./cspell-ext.json --local=da-dk,en \"samples/**\"",
"test": "pnpm run test-de && pnpm run test-samples",
"prepare:dictionary": "echo ok",
"prepublishOnly": "pnpm run conditional-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-dicts.git"
},
"keywords": [
"cspell",
"da-DK",
"Danish",
"dictionary",
"spelling"
],
"author": "Jason Dent",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/da_DK#readme",
"files": [
"da_DK.trie",
"cspell-ext.json",
"src/hunspell/license"
],
"devDependencies": {
"dictionary-da": "^5.1.0"
}
}