diff options
| author | Asko Nõmm <asko@nmm.ee> | 2025-04-28 22:25:28 +0300 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2025-04-28 22:25:28 +0300 |
| commit | b08c553749f6619815c171175dd6bcf8ee6ab035 (patch) | |
| tree | 50fe55703f05a0ae7e9ee1d3503baa444ae27bf4 /package.json | |
| parent | 1c1f54466a00c9cd25b94bc592972e990e18265d (diff) | |
Refactor for only the Node runtime.
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..da21e49 --- /dev/null +++ b/package.json @@ -0,0 +1,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" + } +} |
