diff options
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" + } +} |
