{
  "name": "futurise",
  "private": false,
  "version": "1.9.1",
  "description": "Helpers for things that happen in the future.",
  "keywords": [
    "asynchronous",
    "timer",
    "promise",
    "event",
    "listener",
    "interval"
  ],
  "type": "module",
  "main": "./dist/main.js",
  "exports": {
    "types": "./dist/main.d.ts",
    "import": "./dist/main.js"
  },
  "files": [
    "dist",
    "lib",
    "!lib/old",
    "!lib/**/*.test.ts?",
    "!src",
    "!src/old",
    "README.md",
    "doc/",
    "!doc/.nojekyll"
  ],
  "author": "David Bonnet <david@bonnet.cc>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/nevoland/futurise.git"
  },
  "scripts": {
    "dev": "vite",
    "dev:test": "vitest --update",
    "test": "npm run lint && npm run format && vitest run",
    "build": "rm -rf dist; tsc --project tsconfig.package.json",
    "build:doc": "typedoc --tsconfig tsconfig.package.json",
    "build:doc:save": "typedoc --tsconfig tsconfig.package.json && git add -A && git commit -a -m 'Update doc'",
    "build:demo": "vite build",
    "prepare": "npm run build",
    "start": "vite preview",
    "format": "prettier --check './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
    "format:fix": "prettier --write './**/*.{css,scss,md,mdx,json,tsx,ts,jsx,js}'",
    "lint": "npm run lint:ts",
    "lint:fix": "npm run lint:ts:fix",
    "lint:ts": "eslint .",
    "lint:ts:fix": "eslint --fix .",
    "release:init": "npm publish --access=public",
    "release:patch": "npm version patch && git push origin --follow-tags && npm publish",
    "release:minor": "npm version minor && git push origin --follow-tags && npm publish",
    "release:major": "npm version major && git push origin --follow-tags && npm publish",
    "release:alpha": "npm version prerelease --preid=alpha && git push origin --follow-tags && npm publish --tag=next",
    "release:beta": "npm version prerelease --preid=beta && git push origin --follow-tags && npm publish --tag=next"
  },
  "devDependencies": {
    "@eslint/js": "^8.57.0",
    "@nevoland/get-global": "^2.0.2",
    "@preact/preset-vite": "^2.9.0",
    "@types/eslint": "^8.56.11",
    "@types/node": "^20.14.15",
    "@typescript-eslint/parser": "^7.18.0",
    "autoprefixer": "^10.4.20",
    "cssnano": "^7.0.5",
    "eslint": "^8.57.0",
    "eslint-config-preact": "^1.4.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-inferno": "^7.34.0",
    "eslint-plugin-sort-keys": "^2.3.5",
    "eslint-plugin-tailwindcss": "^3.17.4",
    "eslint-plugin-vitest": "^0.5.4",
    "postcss": "^8.4.41",
    "postcss-pseudo-classes": "^0.4.0",
    "preact": "^10.23.1",
    "prettier": "^3.3.3",
    "prettier-plugin-tailwindcss": "^0.6.6",
    "tailwindcss": "^3.4.9",
    "typedoc": "^0.26.5",
    "typedoc-plugin-markdown": "^4.2.3",
    "typescript": "^5.5.4",
    "vite": "^5.4.0",
    "vite-plugin-module-list": "^2.2.2",
    "vitest": "^2.0.5"
  },
  "dependencies": {
    "@nevoland/get-global": "^2.0.2"
  }
}
