-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.4 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
{
"name": "terminal-columns",
"version": "0.0.0-semantic-release",
"description": "Render a readable table in the terminal",
"keywords": [
"cli",
"table",
"columns",
"readable",
"wrapping",
"responsive",
"typescript"
],
"license": "MIT",
"repository": "privatenumber/terminal-columns",
"funding": "https://github.com/privatenumber/terminal-columns?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"imports": {
"#terminal-columns": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.mjs"
}
},
"packageManager": "[email protected]",
"scripts": {
"build": "pkgroll --minify",
"lint": "lintroll --cache .",
"type-check": "tsc",
"pretest": "pnpm build",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@types/wrap-ansi": "^8.1.0",
"ansi-escapes": "^7.0.0",
"colorette": "^2.0.16",
"es-jest": "^2.1.0",
"jest": "^29.7.0",
"lintroll": "^1.15.0",
"pkgroll": "^2.8.2",
"string-width": "^7.2.0",
"typescript": "^5.7.3",
"wrap-ansi": "^9.0.0"
}
}