-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "cspell-tool",
"version": "0.4.4",
"description": "A command line tool for spell checking.",
"keywords": [
"cspell",
"spell",
"spell-check"
],
"repository": {
"type": "git",
"url": "https://github.com/jellydn/cspell-tool"
},
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"module": "src/index.ts",
"types": "src/index.ts",
"bin": {
"cspell-tool": "./dist/index.js"
},
"files": [
"src",
"dist/index.js",
"package.json"
],
"scripts": {
"build": "bun build src/index.ts --outdir ./dist --target node --format esm --minify --external zx",
"clean": "rm -rf cli && echo 'Done.'",
"dev": "bun run --watch ./src/index.ts",
"format": "biome format --write .",
"lint": "biome lint --apply .",
"np": "bun install && bun run build && bunx np@latest --no-tests",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"consola": "3.4.0",
"zx": "8.3.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@skypack/package-check": "0.2.2",
"@types/consola": "2.2.8",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"bun-types": "latest",
"typescript": "5.7.3",
"vite": "6.0.7",
"vitest": "2.1.8"
},
"engines": {
"node": ">=18.0.0"
},
"np": {
"yarn": false
}
}