1 | {
|
2 | "name": "cspell",
|
3 | "version": "8.15.5",
|
4 | "description": "A Spelling Checker for Code!",
|
5 | "funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
|
6 | "bin": {
|
7 | "cspell": "bin.mjs",
|
8 | "cspell-esm": "bin.mjs"
|
9 | },
|
10 | "type": "module",
|
11 | "sideEffects": false,
|
12 | "types": "dist/esm/index.d.mts",
|
13 | "module": "dist/esm/index.mjs",
|
14 | "exports": {
|
15 | ".": {
|
16 | "import": "./dist/esm/index.mjs"
|
17 | },
|
18 | "./app": {
|
19 | "import": "./dist/esm/app.mjs"
|
20 | },
|
21 | "./bin": {
|
22 | "import": "./bin.mjs"
|
23 | },
|
24 | "./bin.mjs": {
|
25 | "import": "./bin.mjs"
|
26 | },
|
27 | "./application": {
|
28 | "import": "./dist/esm/application.mjs"
|
29 | }
|
30 | },
|
31 | "files": [
|
32 | "bin.mjs",
|
33 | "dist",
|
34 | "!**/*.tsbuildInfo",
|
35 | "!**/__mocks__",
|
36 | "!**/test/**",
|
37 | "!**/*.test.*",
|
38 | "!**/*.spec.*",
|
39 | "!**/*.map"
|
40 | ],
|
41 | "scripts": {
|
42 | "clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
|
43 | "build": "tsc -p . && pnpm run build:api",
|
44 | "build:api": "rollup -c rollup.config.mjs",
|
45 | "build:esm": "tsc -p .",
|
46 | "build:readme": "pnpm build:readme:help",
|
47 | "build:readme:help": "pnpm build:readme:help:lint && pnpm build:readme:help:trace && inject-markdown README.md && prettier -w README.md",
|
48 | "build:readme:help:lint": "./bin.mjs lint --help > static/help-lint.txt",
|
49 | "build:readme:help:trace": "./bin.mjs trace --help > static/help-trace.txt",
|
50 | "clean-build": "pnpm run clean && pnpm run build",
|
51 | "coverage": "vitest run --coverage",
|
52 | "test:watch": "vitest",
|
53 | "test": "vitest run",
|
54 | "watch": "tsc -p . -w",
|
55 | "compile": "tsc -p .",
|
56 | "test-watch": "vitest",
|
57 | "version": "node ./tools/patch-version.mjs && git add .",
|
58 | "prepublishOnly": "pnpm run clean-build",
|
59 | "test:update-snapshot": "vitest run --update"
|
60 | },
|
61 | "repository": {
|
62 | "type": "git",
|
63 | "url": "https://github.com/streetsidesoftware/cspell.git",
|
64 | "directory": "packages/cspell"
|
65 | },
|
66 | "keywords": [
|
67 | "spell",
|
68 | "checker",
|
69 | "code",
|
70 | "camel",
|
71 | "case",
|
72 | "spelling",
|
73 | "spell checker",
|
74 | "spelling checker",
|
75 | "lint"
|
76 | ],
|
77 | "author": "Jason Dent",
|
78 | "license": "MIT",
|
79 | "bugs": {
|
80 | "url": "https://github.com/streetsidesoftware/cspell/issues"
|
81 | },
|
82 | "homepage": "https://cspell.org/",
|
83 | "dependencies": {
|
84 | "@cspell/cspell-json-reporter": "8.15.5",
|
85 | "@cspell/cspell-pipe": "8.15.5",
|
86 | "@cspell/cspell-types": "8.15.5",
|
87 | "@cspell/dynamic-import": "8.15.5",
|
88 | "@cspell/url": "8.15.5",
|
89 | "chalk": "^5.3.0",
|
90 | "chalk-template": "^1.1.0",
|
91 | "commander": "^12.1.0",
|
92 | "cspell-dictionary": "8.15.5",
|
93 | "cspell-gitignore": "8.15.5",
|
94 | "cspell-glob": "8.15.5",
|
95 | "cspell-io": "8.15.5",
|
96 | "cspell-lib": "8.15.5",
|
97 | "fast-json-stable-stringify": "^2.1.0",
|
98 | "file-entry-cache": "^9.1.0",
|
99 | "get-stdin": "^9.0.0",
|
100 | "semver": "^7.6.3",
|
101 | "tinyglobby": "^0.2.10"
|
102 | },
|
103 | "engines": {
|
104 | "node": ">=18"
|
105 | },
|
106 | "devDependencies": {
|
107 | "@types/file-entry-cache": "^5.0.4",
|
108 | "@types/glob": "^8.1.0",
|
109 | "@types/micromatch": "^4.0.9",
|
110 | "@types/semver": "^7.5.8",
|
111 | "micromatch": "^4.0.8",
|
112 | "minimatch": "^9.0.5"
|
113 | },
|
114 | "gitHead": "5f974b2d4d61e2582aba5a1c87fcbc127f5f06bb"
|
115 | }
|