-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
56 lines (56 loc) · 1.81 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": "cspell-cli",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "8.15.3",
"description": "CLI for cspell; A Spelling Checker for Code!",
"type": "module",
"module": "index.js",
"bin": {
"cspell-cli": "index.js"
},
"scripts": {
"version-prerelease": "npx version-release -p",
"version-release-minor": "npx standard-version -r minor",
"version-release-patch": "npx standard-version -r patch",
"version-release": "npx standard-version",
"lint:fix": "prettier -w .",
"build:readme": "npm run build:help && npm run build:help-lint && npm run build:help-trace && npm run build:help-check && npm run build:help-suggestions && npm run build:help-link && inject-markdown README.md",
"build:help": "node index.js --help > static/help.txt",
"build:help-lint": "node index.js lint --help > static/help-lint.txt",
"build:help-trace": "node index.js trace --help > static/help-trace.txt",
"build:help-check": "node index.js check --help > static/help-check.txt",
"build:help-suggestions": "node index.js suggestions --help > static/help-suggestions.txt",
"build:help-link": "node index.js link --help > static/help-link.txt",
"test": "node ./index.js ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-cli.git"
},
"keywords": [
"cspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-cli/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-cli#readme",
"files": [
".pre-commit-hooks.yaml",
"index.js"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"cspell": "^8.16.0"
},
"devDependencies": {
"inject-markdown": "^3.1.0",
"prettier": "^3.3.3"
}
}