-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@evyweb/simple-ddd-toolkit",
"version": "0.20.0",
"description": "A simple Typescript Domain Driven Design Toolkit to help you create your aggregates, domain events, command handlers and other stuff.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc --noEmit && eslint src/**/*.ts specs/**/*.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"changeset": "npx changeset",
"changeset:version": "npx changeset version",
"publish:package": "npm run build && npx changeset publish"
},
"keywords": [
"ddd",
"domain",
"driven",
"design",
"toolkit",
"simple",
"typescript"
],
"author": "Evyweb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Evyweb/simple-ddd-toolkit.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.17.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^15.14.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.1",
"vitest": "^2.1.4"
}
}