UNPKG

@opentap/runner-client

Version:

This is the web client for the OpenTAP Runner.

60 lines (59 loc) 1.74 kB
{ "name": "@opentap/runner-client", "version": "4.0.0", "description": "This is the web client for the OpenTAP Runner.", "main": "./dist/cjs/index.js", "module": "./dist/mjs/index.js", "types": "./dist/mjs/index.d.ts", "exports": { "import": "./dist/mjs/index.js", "require": "./dist/cjs/index.js", "types": "./dist/cjs/index.d.ts" }, "scripts": { "build": "rimraf ./dist && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && bash ./post-build.sh", "watch-cjs-build": "rimraf ./dist && bash ./post-build.sh && tsc -p tsconfig.cjs.json --watch", "watch-esm-build": "rimraf ./dist && bash ./post-build.sh && tsc -p tsconfig.esm.json --watch", "lint": "eslint --ignore-path .eslintignore --ext .js,.ts .", "format": "prettier --write \"src/**/*.+(js|ts|json)\"", "prepare": "npm run build && husky install", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "OpenTap.io", "license": "MIT", "files": [ "dist/**/*" ], "keywords": [ "opentap", "runner", "typescript" ], "repository": { "type": "git", "url": "git://github.com/opentap/runner-client-web.git" }, "devDependencies": { "@types/node": "^22.13.0", "@typescript-eslint/eslint-plugin": "^8.0.0", "@typescript-eslint/parser": "^8.0.0", "eslint": "^8.57.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.0", "lint-staged": "^13.0.3", "prettier": "^2.7.1", "rimraf": "^3.0.2", "typescript": "^5.8" }, "dependencies": { "nats.ws": "~1.29.0", "uuid": "^14.0.0", "events": "^3.3.0" }, "lint-staged": { "*.{ts,js,html}": [ "npm run lint --fix" ] } }