@m-social/cspell-config 0.3.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @m-social/cspell-config
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@m-social/cspell-config)](https://www.npmjs.com/package/@m-social/cspell-config)
4
- [![downloads](https://img.shields.io/npm/dm/@m-social/cspell-config)](https://www.npmjs.com/package/@m-social/cspell-config)
3
+ [![npm version](https://npmx.dev/api/registry/badge/version/@m-social/cspell-config)](https://npmx.dev/package/@m-social/cspell-config)
4
+ [![downloads](https://npmx.dev/api/registry/badge/downloads/@m-social/cspell-config)](https://npmx.dev/package/@m-social/cspell-config)
5
5
 
6
6
  > A shareable CSpell configuration for TypeScript projects used at [M-Social](https://msocialproduction.com)
7
7
 
@@ -29,7 +29,7 @@ Create a `cspell.config.yaml` file (or use [another supported format](https://cs
29
29
 
30
30
  ```yaml
31
31
  import:
32
- - '@m-social/cspell-config'
32
+ - "@m-social/cspell-config"
33
33
  ```
34
34
 
35
35
  ## 📄 License
package/cspell.config.js CHANGED
@@ -8,7 +8,6 @@ const config = {
8
8
  description: "CSpell configuration used at M-Social.",
9
9
  import: ["@cspell/cspell-bundled-dicts", "@cspell/dict-ru_ru/cspell-ext.json"],
10
10
  useGitignore: true,
11
- words: ["m-social", "msocial", "msocialproduction"],
12
11
  ignorePaths: [
13
12
  "**/package.json",
14
13
  "**/patches",
@@ -1,2 +1,4 @@
1
+ msocial
2
+ msocialproduction
1
3
  notask
2
4
  undv
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m-social/cspell-config",
3
- "version": "0.3.1",
3
+ "version": "0.4.0",
4
4
  "description": "Shared CSpell config for projects used at M-Social",
5
5
  "keywords": [
6
6
  "m-social",
@@ -19,6 +19,11 @@
19
19
  }
20
20
  ],
21
21
  "license": "MIT",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/m-social/frontend-configs.git",
25
+ "directory": "configs/cspell"
26
+ },
22
27
  "type": "module",
23
28
  "sideEffects": false,
24
29
  "main": "cspell.json",
@@ -34,19 +39,14 @@
34
39
  "dictionaries"
35
40
  ],
36
41
  "dependencies": {
37
- "@cspell/cspell-bundled-dicts": "^9.6.4",
42
+ "@cspell/cspell-bundled-dicts": "^9.7.0",
38
43
  "@cspell/dict-ru_ru": "^2.3.2"
39
44
  },
40
45
  "peerDependencies": {
41
- "cspell": "^9.6.4"
46
+ "cspell": "^9.7.0"
42
47
  },
43
48
  "devDependencies": {
44
- "@biomejs/biome": "^2.3.14",
45
- "@changesets/cli": "^2.29.8",
46
- "@cspell/cspell-types": "^9.6.4",
47
- "@m-social/biome-config": "^0.3.0",
48
- "@m-social/prettier-config": "^2.0.0",
49
- "cspell": "^9.6.4",
49
+ "@cspell/cspell-types": "^9.7.0",
50
50
  "prettier": "^3.8.1",
51
51
  "publint": "^0.3.17",
52
52
  "typescript": "^5.9.3"
@@ -55,6 +55,6 @@
55
55
  "access": "public"
56
56
  },
57
57
  "scripts": {
58
- "release": "pnpm publint && pnpm publish"
58
+ "build": "publint"
59
59
  }
60
60
  }