-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.16 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
{
"name": "@captive/cspell-config",
"version": "2.4.17",
"description": "CSpell configuration presets",
"keywords": [
"cspell"
],
"homepage": "https://github.com/Captive-Studio/es-project-config/blob/main/packages/cspell-config#readme",
"bugs": {
"url": "https://github.com/Captive-Studio/es-project-config/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Captive-Studio/es-project-config.git",
"directory": "packages/cspell-config"
},
"license": "MIT",
"author": "Julien Polo <[email protected]>",
"type": "commonjs",
"exports": {
".": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json",
"./dist/*": "./dist/*",
"./dict/*": "./dict/*"
},
"typings": "./index.d.ts",
"files": [
"cspell-ext.json",
"dict/**/*",
"dist/",
"src/",
"index.js",
"index.d.ts",
"!**/*.spec.*",
"!**/__tests__/**"
],
"scripts": {
"__build:dict": "cd dict;cspell-tools-cli compile filetypes.txt",
"build": "npx run-p \"build:*\"",
"build:tsc": "tsc -b tsconfig.build.json",
"clean": "npx run-p \"clean:*\"",
"clean:tsc": "rm -rf dist",
"docs": "node ../../markdown.mjs",
"format": "npx run-p \"format:*\"",
"format:src": "eslint . --fix --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"lint": "npx run-p \"lint:*\"",
"lint:src": "eslint . --ext=mjs,cjs,js,jsx,ts,tsx,json,jsonc,json5,yml,yaml",
"prepare": "npx run-p \"prepare:*\"",
"prepare:empty": ":",
"prepublishOnly": "npm run clean;npm run build",
"spellcheck": "cspell --no-progress '**'",
"test": "npx run-p \"test:*\"",
"test:src": "vitest run"
},
"dependencies": {
"@cspell/dict-bash": "^4.1.2",
"@cspell/dict-fr-fr": "^2.2.0",
"@w5s/cspell-config": "^2.3.10"
},
"devDependencies": {
"@cspell/cspell-tools": "8.16.0",
"@cspell/cspell-types": "8.16.0",
"vite": "latest",
"vitest": "latest"
},
"peerDependencies": {
"cspell": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"cspell": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}