generated from streetsidesoftware/template-typescript-cli-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.63 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "<template-typescript-cli-app>",
"version": "1.0.2",
"description": "Example command line tool.",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"bin": {
"perf-test": "./bin.mjs",
"ngram": "./nGram.mjs"
},
"scripts": {
"build": "tsc -p .",
"build:readme": "pnpm build:readme:help && pnpm build:readme:example && pnpm build:readme:inject && prettier -w README.md",
"build:readme:help": "./bin.mjs --help > static/help.txt",
"build:readme:example": "./bin.mjs map > static/example.txt",
"build:readme:inject": "inject-markdown README.md",
"watch": "tsc -p . --watch",
"coverage": "vitest run --coverage",
"lint": "pnpm eslint:check && pnpm prettier:check",
"lint:fix": "pnpm eslint:fix && pnpm prettier:fix",
"lint:spell": "cspell . --no-progress",
"prettier:check": "prettier -c .",
"prettier:fix": "prettier -w .",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"ngram": "node ./nGram.mjs",
"app": "node ./bin.mjs",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "pnpm build"
},
"keywords": [
"template",
"hello"
],
"author": {
"name": "Street Side Software",
"url": "https://github.com/streetsidesoftware"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/template-typescript-cli-app/issues"
},
"homepage": "https://github.com/streetsidesoftware/template-typescript-cli-app#readme",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.12.7",
"@vitest/coverage-v8": "^1.5.0",
"cspell": "^8.7.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"fast-base64": "^0.1.8",
"globals": "^15.0.0",
"inject-markdown": "^3.0.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"vite": "^5.2.9",
"vitest": "^1.5.0"
},
"dependencies": {
"@cspell/cspell-pipe": "^8.7.0",
"as-table": "^1.0.55",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"cspell-trie-lib": "^8.7.0",
"globby": "^14.0.1",
"lorem-ipsum": "^2.0.8",
"ora": "^8.0.1",
"perf-insight": "^1.1.1",
"ts-node": "^10.9.2"
},
"files": [
"bin.mjs",
"nGram.mjs",
"dist/**/*.mjs",
"dist/**/*.js",
"!**/*.test.*",
"!**/*.map"
]
}