UNPKG

@utsp/types

Version:

Type definitions and interfaces for UTSP (Universal Text Stream Protocol)

61 lines 1.44 kB
{ "name": "@utsp/types", "version": "0.4.0", "description": "Type definitions and interfaces for UTSP (Universal Text Stream Protocol)", "author": "THP Software", "license": "MIT", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" } }, "keywords": [ "typescript", "types", "utsp", "terminal", "rendering", "input", "networking", "text-mode", "ascii" ], "repository": { "type": "git", "url": "https://github.com/thp-software/utsp.git", "directory": "packages/types" }, "bugs": { "url": "https://github.com/thp-software/utsp/issues" }, "homepage": "https://github.com/thp-software/utsp/tree/master/packages/types#readme", "engines": { "node": ">=18.0.0" }, "sideEffects": false, "files": [ "dist", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "devDependencies": { "typescript": "^5.6.3" }, "scripts": { "build": "node ../../scripts/build-package.mjs packages/types", "dev": "tsc --watch", "clean": "rimraf dist", "lint": "eslint \"src/**/*.ts\" --max-warnings 0", "lint:fix": "eslint \"src/**/*.ts\" --fix", "typecheck": "tsc --noEmit", "test": "echo \"No tests configured yet\"" } }