@unblessed/vrt
Version:
Visual Regression Testing tools for @unblessed terminal UI applications
78 lines • 1.85 kB
JSON
{
"name": "@unblessed/vrt",
"description": "Visual Regression Testing tools for @unblessed terminal UI applications",
"version": "1.0.0-alpha.18",
"author": "Vinicius De Antoni <vdeantoni@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vrt": "./dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**/*.js",
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.d.cts",
"dist/**/*.map",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vdeantoni/unblessed.git",
"directory": "packages/vrt"
},
"homepage": "https://github.com/vdeantoni/unblessed/tree/master/packages/vrt",
"bugs": {
"url": "https://github.com/vdeantoni/unblessed/issues"
},
"keywords": [
"unblessed",
"vrt",
"visual-regression",
"testing",
"terminal",
"tui",
"snapshot-testing"
],
"dependencies": {
"commander": "^12.1.0"
},
"peerDependencies": {
"@unblessed/core": "^1.0.0-alpha.18"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@unblessed/core": "1.0.0-alpha.18"
},
"engines": {
"node": ">= 22.0.0"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rimraf dist coverage .turbo",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
}
}