{
  "name": "typed-signals",
  "version": "3.0.0",
  "description": "A type checked signal library for TypeScript (and JavaScript)",
  "keywords": [
    "TypeScript",
    "Signal",
    "Event",
    "Publish",
    "Subscribe"
  ],
  "homepage": "https://github.com/Lusito/typed-signals",
  "bugs": {
    "url": "https://github.com/Lusito/typed-signals/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Lusito/typed-signals.git"
  },
  "license": "CC0-1.0",
  "author": "Santo Pfingsten",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rimraf dist && tsc -p tsconfig-build.json",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "doc": "rimraf docs && typedoc --excludePrivate --out docs --exclude \"src/*.spec.ts\" src && copyfiles -a -f \"doc-assets/*\" docs",
    "lint": "npm run lint:style && npm run lint:es && npm run lint:package",
    "lint:es": "eslint \"{src,test}/**/*.{ts,tsx}\" --ext \".ts,.tsx\" --ignore-path .prettierignore",
    "lint:es:fix": "npm run lint:es -- --fix",
    "lint:fix": "npm run lint:style:fix && npm run lint:es:fix && npm run lint:package:fix",
    "lint:package": "sort-package-json --check",
    "lint:package:fix": "sort-package-json",
    "lint:style": "npm run lint:style:base -- --check",
    "lint:style:base": "prettier \"{src,test}/**/*.{ts,tsx,js,json}\" \"./*.{ts,tsx,js,json}\"",
    "lint:style:fix": "npm run lint:style:base -- --write",
    "test": "jest"
  },
  "devDependencies": {
    "@lusito/eslint-config": "^3.0.1",
    "@lusito/prettier-config": "^3.0.0",
    "@lusito/stylelint-config": "^3.0.0",
    "@types/jest": "^29.5.12",
    "copyfiles": "^2.4.1",
    "coveralls": "^3.1.1",
    "eslint-plugin-jest": "^28.5.0",
    "jest": "^29.7.0",
    "rimraf": "^5.0.7",
    "sort-package-json": "^2.10.0",
    "ts-jest": "^29.1.3",
    "typedoc": "0.25.13",
    "typescript": "^5.4.5"
  },
  "volta": {
    "node": "20.13.1"
  }
}
