-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
70 lines (70 loc) · 1.86 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
{
"name": "@cspell/cspell-tools",
"version": "8.15.7",
"description": "Tools to assist with the development of cSpell",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"sideEffects": false,
"bin": {
"cspell-tools-cli": "bin.mjs"
},
"scripts": {
"build": "pnpm run build-schema && pnpm run compile",
"build-schema": "ts-json-schema-generator --no-top-ref --path src/config/config.ts --type RunConfig --validation-keywords deprecated -o ./cspell-tools.config.schema.json",
"compile": "tsc -p .",
"watch": "tsc -p . -w",
"clean-build": "pnpm run clean && pnpm run build",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"update-snapshot": "vitest run -u"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-tools"
},
"keywords": [
"cSpell",
"Word",
"List",
"Compiler"
],
"files": [
"bin.mjs",
"dist",
"cspell-tools.config.schema.json",
"!**/*.tsbuildInfo",
"!**/__mocks__",
"!**/*.test.*",
"!**/*.spec.*",
"!**/*.map"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-tools"
},
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-tools#readme",
"dependencies": {
"@cspell/cspell-pipe": "workspace:*",
"commander": "^12.1.0",
"cosmiconfig": "9.0.0",
"cspell-trie-lib": "workspace:*",
"glob": "^10.4.5",
"hunspell-reader": "workspace:*",
"yaml": "^2.6.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"lorem-ipsum": "^2.0.8",
"ts-json-schema-generator": "^2.3.0"
},
"module": "bin.mjs"
}