forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "@cspell/dict-golang",
"version": "6.0.18",
"description": "Go Language dictionary for cspell.",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"sync": "pnpm cpy \"node_modules/go-words/**\" \"src/go-words\" --flat",
"conditional-build": "pnpm run sync && pnpm run build",
"build": "cspell-tools-cli build",
"test": "shx head -n 100 src/go.txt | cspell -c ./cspell-ext.json --locale=* --languageId=go stdin",
"prepublishOnly": "echo pre-publish",
"prepare:dictionary": "pnpm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/golang"
},
"keywords": [
"cspell",
"golang",
"Go Language",
"dictionary",
"spelling"
],
"author": "Street Side Software <[email protected]>",
"contributors": [
"Alexey Palazhchenko",
"Jason Dent <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/golang#readme",
"files": [
"./dict/go.txt",
"cspell-ext.json"
],
"devDependencies": {
"go-words": "github:AlekSi/go-words"
}
}