-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
112 lines (112 loc) · 3.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@cspell/eslint-plugin",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "8.15.7",
"description": "CSpell ESLint plugin",
"keywords": [
"cspell",
"eslint",
"plugin",
"spell",
"spell checker",
"spelling"
],
"author": "Jason Dent <jason@streetsidesoftware.nl>",
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-eslint-plugin#readme",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/plugin/index.d.cts",
"require": "./dist/plugin/index.cjs",
"import": "./dist/plugin/index.cjs",
"default": "./dist/plugin/index.cjs"
},
"./configs": {
"types": "./dist/plugin/configs.d.cts",
"require": "./dist/plugin/configs.cjs",
"import": "./dist/plugin/configs.cjs",
"default": "./dist/plugin/configs.cjs"
},
"./recommended": {
"types": "./dist/plugin/recommended.d.cts",
"require": "./dist/plugin/recommended.cjs",
"import": "./dist/plugin/recommended.cjs",
"default": "./dist/plugin/recommended.cjs"
}
},
"type": "module",
"sideEffects": false,
"main": "dist/plugin/index.cjs",
"types": "dist/plugin/index.d.cts",
"files": [
"assets",
"dist",
"!**/__mocks__",
"!**/*.spec.*",
"!**/*.test.*",
"!**/test*/**",
"!**/*.tsbuildInfo",
"!**/*.map"
],
"scripts": {
"bt": "pnpm build && pnpm test",
"build": "pnpm build:schema && pnpm build:src",
"build:src": "tsc -b ./tsconfig.json -f",
"build:schema": "pnpm build-options-schema",
"build:schema:old": "ts-json-schema-generator --no-top-ref --expose none --path src/common/options.cts --type Options -o ./assets/options.schema.json",
"watch": "tsc -b ./tsconfig.json --watch -f",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "echo coverage",
"test-watch": "pnpm run test -- --watch",
"test-yaml": "npx mocha --timeout 10000 \"dist/**/yaml.test.mjs\"",
"test": "npx mocha --timeout 10000 \"dist/**/*.test.mjs\""
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-eslint-plugin"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-gitignore"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/eslint": "^8.56.12",
"@types/estree": "^1.0.6",
"@types/mocha": "^10.0.9",
"@typescript-eslint/parser": "^8.13.0",
"@typescript-eslint/types": "^8.13.0",
"eslint": "^9.14.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-n": "^17.12.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-yml": "^1.15.0",
"globals": "^15.12.0",
"jsonc-eslint-parser": "^2.4.0",
"mocha": "^10.8.2",
"ts-json-schema-generator": "^2.3.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.13.0",
"yaml-eslint-parser": "^1.2.3"
},
"dependencies": {
"@cspell/cspell-types": "workspace:*",
"@cspell/url": "workspace:*",
"cspell-lib": "workspace:*",
"synckit": "^0.9.2"
},
"peerDependencies": {
"eslint": "^7 || ^8 || ^9"
}
}