-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
64
65
66
{
"name": "rspell",
"version": "1.6.7",
"description": "📝 Find and fix all your project's typos with a single command!",
"main": "dist/cli.js",
"repository": "https://github.com/Lioness100/rspell",
"bugs": "https://github.com/Lioness100/rspell/issues",
"homepage": "https://github.com/Lioness100/rspell/#readme",
"author": "Lioness100",
"license": "Apache-2.0",
"bin": "dist/cli.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"test": "vitest run",
"format": "prettier --write \"{*,src/**/*}.{json,js,ts}\"",
"update": "yarn upgrade-interactive",
"build": "tsup",
"watch": "tsup --watch",
"typecheck": "tsc -b src"
},
"dependencies": {
"application-config-path": "^1.0.0",
"colorette": "^2.0.19",
"commander": "^10.0.0",
"cspell": "^6.24.0",
"cspell-lib": "^6.26.3",
"inquirer": "^8.2.5",
"inquirer-prompt-suggest": "^0.1.0",
"nanospinner": "^1.1.0"
},
"devDependencies": {
"@lioness100/configs": "^1.0.23",
"@types/inquirer": "^8.2.5",
"@types/node": "^18.13.0",
"esbuild-plugin-version-injector": "^1.0.3",
"eslint": "^8.34.0",
"prettier": "^2.8.4",
"tsup": "^6.6.2",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitest": "^0.28.5"
},
"files": [],
"keywords": [
"cspell",
"spell",
"spellcheck",
"spellchecker",
"spell-check",
"spell-checker",
"cli"
],
"engines": {
"node": ">=16.6"
},
"eslintConfig": {
"extends": [
"./node_modules/@lioness100/configs/.eslintrc.json"
]
},
"prettier": "@lioness100/configs/prettier",
"packageManager": "yarn@3.2.1"
}