summaryrefslogtreecommitdiff
path: root/package.json
blob: da21e4909d7303729c7322c4d015ad0fcd4af95a (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
38
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "shapex",
  "version": "2.1.1",
  "description": "A scalable event-driven application framework.",
  "author": "Asko Nõmm <asko@nmm.ee> (https://nmm.ee)",
  "main": "dist/shapex.cjs",
  "module": "dist/shapex.js",
  "types": "dist/shapex.d.ts",
  "exports": {
    "import": {
      "types": "./dist/shapex.d.ts",
      "default": "./dist/shapex.js"
    },
    "require": {
      "types": "./dist/shapex.d.cts",
      "default": "./dist/shapex.cjs"
    }
  },
  "type": "module",
  "license": "MIT",
  "keywords": [
    "framework",
    "pubsub",
    "events",
    "subscriptions"
  ],
  "bugs": {
    "url": "https://github.com/shapex/shapex/issues",
    "email": "asko@nmm.ee"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shapex/shapex.git"
  },
  "scripts": {
    "bundle": "tsup src/shapex.ts",
    "test": "vitest",
    "coverage": "vitest run --coverage"
  },
  "devDependencies": {
    "@types/node": "^22.10.10",
    "@vitest/coverage-v8": "^2.1.8",
    "@vitest/ui": "^2.1.8",
    "tsup": "^8.3.5",
    "typescript": "^5.7.3",
    "vite": "^5.4.11",
    "vitest": "^2.1.8"
  }
}