@utsp/core
Version:
UTSP core engine - Universal Text Stream Protocol data management
63 lines • 1.49 kB
JSON
{
"name": "@utsp/core",
"version": "0.4.0",
"description": "UTSP core engine - Universal Text Stream Protocol data management",
"author": "THP Software",
"license": "MIT",
"type": "module",
"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"
}
},
"repository": {
"type": "git",
"url": "https://github.com/thp-software/utsp.git",
"directory": "packages/core"
},
"bugs": "https://github.com/thp-software/utsp/issues",
"homepage": "https://github.com/thp-software/utsp#readme",
"keywords": [
"utsp",
"terminal",
"text-mode",
"websocket",
"ascii",
"rendering",
"protocol",
"networking",
"multi-user"
],
"engines": {
"node": ">=18.0.0"
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@utsp/types": "0.4.0"
},
"devDependencies": {
"@types/node": "^24.9.1",
"typescript": "^5.6.3"
},
"scripts": {
"build": "rimraf dist && rimraf tsconfig.tsbuildinfo && node ../../scripts/build-package.mjs packages/core",
"dev": "tsc --watch",
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.ts\" --max-warnings 0",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"typecheck": "tsc --noEmit"
}
}