This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.41 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
{
"version": "1.9.0",
"type": "module",
"name": "@schoero/cspell-config",
"description": "Personal cspell config",
"license": "MIT",
"author": "Roger Schönbächler",
"homepage": "https://github.com/schoero/cspell-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/schoero/cspell-config.git"
},
"bugs": {
"url": "https://github.com/schoero/cspell-config/issues"
},
"main": "lib/.cspell.json",
"scripts": {
"build": "rm -rf lib && mkdir lib && cp -R src/dict lib/dict && node src/create-config.js > lib/.cspell.json",
"prepare": "npm run build"
},
"files": [
"lib"
],
"peerDependencies": {
"@cspell/dict-bash": "^4.1.2",
"@cspell/dict-companies": "^3.0.24",
"@cspell/dict-css": "^4.0.10",
"@cspell/dict-de-ch": "^1.1.0",
"@cspell/dict-en_us": "^4.3.8",
"@cspell/dict-fullstack": "^3.1.5",
"@cspell/dict-html": "^4.0.5",
"@cspell/dict-html-symbol-entities": "^4.0.0",
"@cspell/dict-lorem-ipsum": "^4.0.0",
"@cspell/dict-markdown": "^2.0.1",
"@cspell/dict-node": "^4.0.3",
"@cspell/dict-npm": "^5.0.10",
"@cspell/dict-public-licenses": "^2.0.4",
"@cspell/dict-software-terms": "^3.3.2",
"@cspell/dict-typescript": "^3.1.2",
"cspell": "^7.3.7"
},
"devDependencies": {
"@schoero/eslint-config": "^1.42.0",
"@schoero/markdownlint-config": "^1.1.7",
"@types/node": "^20.9.0"
}
}