-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) Β· 1.59 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
{
"name": "tabletron",
"version": "0.0.2",
"description": "π¨β¨ Transform your terminal output into a clear, easily readable table with just one command! ππ",
"author": "",
"license": "MIT",
"hompage": "https://π»nyxb.ws",
"repository": {
"type": "git",
"url": "git+https://github.com/nyxblabs/tabletron.git"
},
"bugs": {
"url": "https://github.com/nyxblabs/tabletron/issues"
},
"funding": "https://github.com/nyxblabs/tabletron?sponsor=1",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"prepack": "nyxr build",
"build": "buildkarium",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js . --fix",
"test": "vitest run --coverage",
"release": "nyxr test && nyxlx changelogen@latest --release && pnpm publish && git push --follow-tags origin main"
},
"devDependencies": {
"@nyxb/eslint-config": "0.0.53",
"@nyxb/picocolors": "1.0.2",
"@types/node": "^20.2.1",
"@types/wrap-ansi": "^8.0.1",
"@vitest/coverage-c8": "^0.31.1",
"ansi-escapes": "^6.2.0",
"buildkarium": "^0.0.2",
"eslint": "^8.41.0",
"string-width": "^6.1.0",
"typescript": "^5.0.2",
"vitest": "^0.31.1",
"wrap-ansi": "^8.1.0"
},
"files": [
"dist"
],
"keywords": [
"cli",
"table",
"columns",
"readable",
"wrapping",
"responsive",
"typescript"
]
}