forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 2.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
49
50
51
52
53
54
55
56
57
58
{
"name": "cspell-dicts",
"version": "21.0.6",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"test": "pnpm -r run --workspace-concurrency 2 --stream test",
"lint": "pnpm run lint:fix && cspell",
"lint-ci": "eslint . && prettier -c \"**/*.{md,json,yml,yaml}\" && cspell",
"lint:fix": "eslint --fix . && prettier -w \"**/*.{md,json,yml,yaml}\"",
"build:all": "pnpm -r run --stream --workspace-concurrency 2 build --no-bail",
"build:readme": "pnpm run readme:generate-doc-dictionaries && pnpm run readme:inject",
"build:conditional": "pnpm -r run --workspace-concurrency 2 --stream build:conditional --no-bail && pnpm -r run --workspace-concurrency 2 --stream conditional-build --no-bail",
"lint:fix:sort-source-files": "node ./scripts/sort-source.mjs -c sort-source.config.json",
"conditional-build": "pnpm build:conditional",
"check-dirty": "git --no-pager diff --compact-summary --exit-code",
"check-spelling": "cspell",
"checksum": "pnpm -r run checksum",
"create-dictionary": "node ./generator-cspell-dicts/run.js",
"clean": "shx rm -rf \"packages/*/*.txt.gz\" \"dictionaries/*/*.txt.gz\"",
"readme:generate-doc-dictionaries": "./scripts/dictionaries.sh > dictionaries.md",
"readme:inject": "inject-markdown \"*.md\" \"dictionaries/*/README.md\" && prettier -w \"*.md\" \"dictionaries/*/README.md\"",
"prepare": "pnpm -r run --stream --workspace-concurrency 3 prepare:dictionary",
"pub-recover": "lerna publish from-package --no-push --no-private --concurrency 1",
"update-packages": "pnpm up",
"preinstall": "npx only-allow pnpm"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts.git"
},
"devDependencies": {
"@cspell/cspell-tools": "^8.1.3",
"@lerna-lite/cli": "^3.1.0",
"@lerna-lite/exec": "^3.1.0",
"@lerna-lite/publish": "^3.1.0",
"@lerna-lite/run": "^3.1.0",
"ava": "^6.0.1",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"cspell": "^8.1.3",
"cspell-dict-file-checker": "workspace:*",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"generator-cspell-dicts": "workspace:*",
"hunspell-reader": "^8.1.3",
"inject-markdown": "^2.1.0",
"json5": "2.2.3",
"prettier": "^3.1.1",
"shx": "^0.3.4",
"yamljs": "^0.3.0"
},
"engines": {
"node": ">=18"
},
"license": "GPL-3.0-or-later"
}