diff options
| author | Asko Nõmm <asko@nmm.ee> | 2025-04-13 22:29:11 +0300 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2025-04-13 22:29:11 +0300 |
| commit | 160d6688dc1bb467aba0c4e39457193478906678 (patch) | |
| tree | add66a8b455556d04f4ce42602717e39df6d0897 /package.json | |
Initial commit
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..835046f --- /dev/null +++ b/package.json @@ -0,0 +1,37 @@ +{ + "name": "eventx", + "version": "1.0.0", + "description": "A scalable event-driven application framework.", + "main": "dist/eventx.js", + "module": "dist/eventx.mjs", + "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": {} +} |
