ansimax 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,110 @@
1
+ {
2
+ "name": "ansimax",
3
+ "version": "1.0.0",
4
+ "description": "Zero-dependency CLI rendering library: colors, gradients, animations, ASCII art, pixel art, components, and themes — all in TypeScript.",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ }
14
+ },
15
+ "scripts": {
16
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
17
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
18
+ "test": "jest",
19
+ "test:watch": "jest --watch",
20
+ "test:coverage": "jest --coverage",
21
+ "lint": "eslint src --ext .ts,.tsx",
22
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
23
+ "format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
24
+ "format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
25
+ "typecheck": "tsc --noEmit",
26
+ "prepublishOnly": "npm run build && npm run test",
27
+ "release": "npm version patch && npm publish",
28
+ "release:minor": "npm version minor && npm publish",
29
+ "release:major": "npm version major && npm publish"
30
+ },
31
+ "keywords": [
32
+ "ansi",
33
+ "colors",
34
+ "terminal",
35
+ "console",
36
+ "cli",
37
+ "gradient",
38
+ "gradients",
39
+ "animation",
40
+ "animations",
41
+ "ascii",
42
+ "ascii-art",
43
+ "pixel-art",
44
+ "banner",
45
+ "spinner",
46
+ "loader",
47
+ "progress",
48
+ "progress-bar",
49
+ "components",
50
+ "table",
51
+ "badge",
52
+ "timeline",
53
+ "theme",
54
+ "themes",
55
+ "styling",
56
+ "formatting",
57
+ "text-effects",
58
+ "typewriter",
59
+ "rgb",
60
+ "hex",
61
+ "truecolor",
62
+ "terminal-ui",
63
+ "command-line",
64
+ "nodejs",
65
+ "typescript",
66
+ "zero-dependencies",
67
+ "abort-signal",
68
+ "no-color"
69
+ ],
70
+ "author": {
71
+ "name": "Brashkie",
72
+ "url": "https://github.com/Brashkie"
73
+ },
74
+ "license": "MIT",
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "git+https://github.com/Brashkie/ansimax.git"
78
+ },
79
+ "bugs": {
80
+ "url": "https://github.com/Brashkie/ansimax/issues"
81
+ },
82
+ "homepage": "https://github.com/Brashkie/ansimax#readme",
83
+ "files": [
84
+ "dist",
85
+ "README.md",
86
+ "README.es.md",
87
+ "LICENSE"
88
+ ],
89
+ "engines": {
90
+ "node": ">=18.0.0"
91
+ },
92
+ "devDependencies": {
93
+ "@types/jest": "^29.5.0",
94
+ "@types/node": "^20.19.39",
95
+ "@typescript-eslint/eslint-plugin": "^6.13.0",
96
+ "@typescript-eslint/parser": "^6.13.0",
97
+ "eslint": "^8.54.0",
98
+ "eslint-config-prettier": "^9.0.0",
99
+ "eslint-plugin-prettier": "^5.0.1",
100
+ "jest": "^29.7.0",
101
+ "prettier": "^3.1.0",
102
+ "ts-jest": "^29.1.1",
103
+ "tsup": "^8.0.1",
104
+ "tsx": "^4.21.0",
105
+ "typescript": "6.0.3"
106
+ },
107
+ "publishConfig": {
108
+ "access": "public"
109
+ }
110
+ }