From b08c553749f6619815c171175dd6bcf8ee6ab035 Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Mon, 28 Apr 2025 22:25:28 +0300 Subject: Refactor for only the Node runtime. --- package.json | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 package.json (limited to 'package.json') 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 (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" + } +} -- cgit v1.2.3