-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 KB
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
{
"name": "@alexlar/ascii",
"version": "0.0.1",
"description": "A lightweight command-line utility for quick ASCII table lookups",
"main": "./dist/index.mjs",
"type": "module",
"bin": {
"ascii": "bin/ascii"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "npm run type-check && tsup",
"prepublishOnly": "npm run test && npm run build",
"type-check": "tsc --noEmit --project tsconfig.json",
"test": "vitest run"
},
"keywords": [
"ascii",
"table",
"cheatsheet",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alex-Lar/ascii.git"
},
"author": "Alexander Larin",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.6.2",
"@types/yargs": "^17.0.34",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vitest": "^4.0.3"
},
"dependencies": {
"console-table-printer": "^2.15.0",
"yargs": "^18.0.0"
}
}