@figlet-ts/lib
Version:
Core figlet-ts library
79 lines (78 loc) • 2.71 kB
JSON
{
"name": "@figlet-ts/lib",
"author": "Andrew B. Dicks",
"license": "MIT",
"version": "0.5.0",
"description": "Core figlet-ts library",
"repository": {
"type": "git",
"url": "https://github.com/figlet-ts/figlet-ts.git",
"directory": "packages/lib"
},
"scripts": {
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint:check": "eslint --cache --ext .ts src/**/*.ts tests/**/*.ts --no-error-on-unmatched-pattern",
"lint:fix": "eslint --cache --fix --ext .ts src/**/*.ts tests/**/*.ts --no-error-on-unmatched-pattern",
"check": "npm run lint:check && npm run prettier:check",
"fix": "npm run lint:fix && npm run prettier:fix",
"clean": "rimraf dist",
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript && rimraf dist/types",
"prepublishOnly": "npm run test && npm run build",
"test": "node --experimental-vm-modules --no-warnings ../../node_modules/jest/bin/jest.js"
},
"keywords": [
"figlet",
"figlet-ts",
"figlet-lib",
"ascii",
"ascii-font",
"ascii-art"
],
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"source": "src/index.ts",
"main": "dist/figlet-ts-lib.cjs",
"module": "dist/figlet-ts-lib.mjs",
"browser": "dist/figlet-ts-lib.mjs",
"types": "dist/figlet-ts-lib.d.ts",
"type": "module",
"exports": {
"require": "./dist/figlet-ts-lib.cjs",
"import": "./dist/figlet-ts-lib.mjs"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"chalk": "^5.2.0",
"debug": "^4.3.4",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"glob": "^9.3.4",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-gzip": "^3.1.0",
"string-width": "^5.1.2",
"ts-jest": "^29.0.5"
},
"browserslist": [
"> 0.4% and not dead"
]
}