-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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
{
"name": "@nolebase/cspell-dict",
"type": "module",
"version": "1.3.1",
"packageManager": "[email protected]",
"description": "Nolebase terms dictionary for cSpell.",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Nólëbase",
"email": "[email protected]",
"url": "https://github.com/nolebase"
},
"license": "MIT",
"homepage": "https://github.com/nolebase/cspell-dicts/blob/main/#readme",
"repository": "git+https://github.com/nolebase/cspell-dict.git",
"bugs": {
"url": "https://github.com/nolebase/cspell-dicts/issues"
},
"keywords": [
"cspell",
"dictionary",
"spelling",
"nolebase",
"Nólëbase"
],
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"files": [
"LICENSE",
"README.md",
"cspell-ext.json",
"nolebase.trie.gz",
"package.json"
],
"scripts": {
"gz": "cspell-tools-cli gzip \"*.trie\"",
"prepare:dictionary": "pnpm gz",
"build": "cspell-tools-cli build && pnpm gz",
"conditional-build": "cspell-tools-cli build --conditional && pnpm gz",
"test": "shx head -n 1000 \"src/nolebase.dic.txt\" | cspell -c ./cspell-ext.json --locale=en --languageId=* stdin"
},
"devDependencies": {
"@antfu/eslint-config": "3.13",
"@cspell/cspell-tools": "^8.16.1",
"bumpp": "^9.8.1",
"cspell": "^8.16.1",
"eslint": "9",
"gz": "^0.0.0",
"shx": "^0.3.4"
}
}