domaindrivenjs
Version:
Composition-based Domain-Driven Design toolkit for JavaScript/TypeScript
88 lines • 2.11 kB
JSON
{
"name": "domaindrivenjs",
"version": "0.3.0",
"description": "Composition-based Domain-Driven Design toolkit for JavaScript/TypeScript",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"files": [
"dist",
"src/index.d.ts",
"README.md"
],
"keywords": [
"ddd",
"domain-driven-design",
"domain",
"entity",
"value-object",
"aggregate",
"repository",
"typescript",
"javascript"
],
"author": "DomainDrivenJS Team",
"license": "MIT",
"homepage": "https://marcomuellner.github.io/domaindrivenjs/",
"repository": {
"type": "git",
"url": "git+https://github.com/marcomuellner/domaindrivenjs.git"
},
"bugs": {
"url": "https://github.com/marcomuellner/domaindrivenjs/issues"
},
"dependencies": {
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@typescript-eslint/eslint-plugin": "^8.29.1",
"@typescript-eslint/parser": "^8.29.1",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"globals": "^16.0.0",
"jsdoc": "^4.0.2",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"peerDependencies": {
"zod": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup && pnpm run generate-types",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .js,.ts",
"format": "prettier --write src",
"format:check": "prettier --check src",
"docs": "jsdoc -c jsdoc.json",
"prepublish": "pnpm run build",
"generate-types": "tsc --project tsconfig.types.json",
"copy-types": "cp src/index.d.ts dist/"
}
}