summaryrefslogtreecommitdiff
path: root/package.json
blob: a7216aa2388ba756df9c934685c4fecc4dd9f105 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
  "name": "@askonmm/eventx",
  "version": "1.0.1",
  "description": "A scalable event-driven application framework.",
  "main": "dist/eventx.cjs",
  "module": "dist/eventx.js",
  "type": "module",
  "license": "MIT",
  "keywords": [
    "reactive",
    "events",
    "pubsub",
    "subscriptions"
  ],
  "bugs": {
    "url": "https://github.com/askonomm/eventx/issues",
    "email": "asko@nmm.ee"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/askonomm/eventx.git"
  },
  "scripts": {
    "bundle": "tsup src/eventx.ts",
    "test": "vitest",
    "coverage": "vitest run --coverage"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^3.1.1",
    "@vitest/ui": "^3.1.1",
    "tsup": "^8.3.5",
    "typescript": "^5.7.3",
    "vite": "^6.2.6",
    "vitest": "^3.1.1"
  },
  "dependencies": {}
}