-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.95 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
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
{
"name": "@neabyte/console-kit",
"version": "1.2.1",
"description": "Terminal UI toolkit for Node.js with animated spinners, custom colors, and text styling",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc && tsc-alias -f -fe .js && npm run minify",
"minify": "find dist -name '*.js' -exec terser {} --compress --mangle -o {} \\;",
"dev": "tsc --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"type-check": "tsc --noEmit",
"check-all": "npm run lint && npm run type-check"
},
"keywords": [
"terminal",
"cli",
"spinner",
"loading",
"animation",
"colors",
"ansi",
"typescript",
"nodejs",
"console",
"ui"
],
"author": {
"name": "NeaByteLab",
"email": "me@neabyte.com",
"url": "https://github.com/NeaByteLab"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Console-Kit.git"
},
"bugs": {
"url": "https://github.com/NeaByteLab/Console-Kit/issues"
},
"homepage": "https://github.com/NeaByteLab/Console-Kit#readme",
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sonarjs": "^3.0.5",
"prettier": "^3.6.2",
"terser": "^5.44.0",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist/**/*",
"TS-USAGE.md",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}