@invoicing-sdk/application
Version:
Application layer for the invoicing system including use cases, ports, and application services
60 lines • 1.5 kB
JSON
{
"name": "@invoicing-sdk/application",
"version": "0.10.0",
"description": "Application layer for the invoicing system including use cases, ports, and application services",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"invoicing",
"application",
"use-cases",
"ports",
"typescript",
"ddd"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/benjamin-kraatz/invoicing-sdk.git",
"directory": "packages/application"
},
"bugs": {
"url": "https://github.com/benjamin-kraatz/invoicing-sdk/issues"
},
"homepage": "https://github.com/benjamin-kraatz/invoicing-sdk#readme",
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.5.0",
"typescript": "~5.9.2",
"vitest": "3.2.4"
},
"dependencies": {
"@invoicing-sdk/domain": "0.10.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage --coverage.reportsDirectory=./.coverage",
"lint": "echo 'No linter configured'"
}
}