forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.7 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
59
60
61
62
63
{
"name": "cspell-dicts",
"version": "28.2.3",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"test": "pnpm -r run --workspace-concurrency 2 --stream test",
"lint": "pnpm run lint:fix && cspell --no-progress",
"lint-ci": "eslint . && prettier -c . && cspell --no-progress",
"lint:fix": "eslint --fix . && prettier -w .",
"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": "sort-source -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-dictionaries": "# Update dictionaries will run the update-dictionary script in each dictionary package.",
"update-dictionaries": "pnpm -r run --stream --workspace-concurrency 2 update-dictionary",
"update:contributors": "update-contributors $(gh auth token)",
"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.16.1",
"@lerna-lite/cli": "^3.10.0",
"@lerna-lite/exec": "^3.10.0",
"@lerna-lite/publish": "^3.10.0",
"@lerna-lite/run": "^3.10.0",
"ava": "^6.2.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"cspell": "^8.16.1",
"cspell-dict-file-checker": "workspace:^",
"cspell-trie": "^8.16.1",
"eslint": "^9.15.0",
"generator-cspell-dicts": "workspace:^",
"globals": "^15.12.0",
"hunspell-reader": "^8.16.1",
"inject-markdown": "^3.1.4",
"json5": "2.2.3",
"license": "^1.0.3",
"prettier": "^3.4.1",
"scripts": "link:scripts",
"shx": "^0.3.4",
"yamljs": "^0.3.0"
},
"engines": {
"node": ">=18"
},
"license": "GPL-3.0-or-later"
}