basant307/AI_Governance_Project
048
1{2 "name": "boxen",3 "version": "7.1.1",4 "description": "Create boxes in the terminal",5 "license": "MIT",6 "repository": "sindresorhus/boxen",7 "funding": "https://github.com/sponsors/sindresorhus",8 "author": {9 "name": "Sindre Sorhus",10 "email": "sindresorhus@gmail.com",11 "url": "https://sindresorhus.com"12 },13 "type": "module",14 "exports": "./index.js",15 "engines": {16 "node": ">=14.16"17 },18 "scripts": {19 "test": "xo && nyc ava && tsd"20 },21 "files": [22 "index.js",23 "index.d.ts"24 ],25 "keywords": [26 "cli",27 "box",28 "boxes",29 "terminal",30 "term",31 "console",32 "ascii",33 "unicode",34 "border",35 "text"36 ],37 "dependencies": {38 "ansi-align": "^3.0.1",39 "camelcase": "^7.0.1",40 "chalk": "^5.2.0",41 "cli-boxes": "^3.0.0",42 "string-width": "^5.1.2",43 "type-fest": "^2.13.0",44 "widest-line": "^4.0.1",45 "wrap-ansi": "^8.1.0"46 },47 "devDependencies": {48 "ava": "^5.2.0",49 "nyc": "^15.1.0",50 "tsd": "^0.28.1",51 "xo": "^0.54.2"52 },53 "ava": {54 "snapshotDir": "tests/snapshots",55 "environmentVariables": {56 "COLUMNS": "60",57 "FORCE_COLOR": "0"58 }59 },60 "xo": {61 "rules": {62 "@typescript-eslint/no-redundant-type-constituents": "off",63 "unicorn/prefer-logical-operator-over-ternary": "off",64 "@typescript-eslint/no-unsafe-assignment": "off"65 }66 }67}68 