@shirudo/ddd-kit 1.0.0-rc.7 → 1.0.0-rc.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,73 +1,74 @@
1
1
  {
2
- "name": "@shirudo/ddd-kit",
3
- "version": "1.0.0-rc.7",
4
- "description": "Composable TypeScript toolkit for tactical DDD",
5
- "type": "module",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/shi-rudo/ddd-kit-ts.git"
9
- },
10
- "main": "./dist/index.js",
11
- "types": "./dist/index.d.ts",
12
- "exports": {
13
- ".": {
14
- "import": "./dist/index.js",
15
- "types": "./dist/index.d.ts"
16
- },
17
- "./utils": {
18
- "import": "./dist/utils.js",
19
- "types": "./dist/utils.d.ts"
20
- }
21
- },
22
- "sideEffects": false,
23
- "files": [
24
- "dist"
25
- ],
26
- "keywords": [
27
- "ddd",
28
- "domain",
29
- "typescript",
30
- "toolkit"
31
- ],
32
- "license": "MIT",
33
- "publishConfig": {
34
- "access": "public"
35
- },
36
- "devDependencies": {
37
- "@biomejs/biome": "2.1.4",
38
- "@shirudo/base-error": "^4.6.0",
39
- "@shirudo/result": "^0.0.6",
40
- "tsup": "^8.5.0",
41
- "typedoc": "^0.28.19",
42
- "typedoc-plugin-markdown": "^4.11.0",
43
- "typedoc-vitepress-theme": "^1.1.2",
44
- "typescript": "^5.9.2",
45
- "vitepress": "^1.6.4",
46
- "vitest": "^3.2.4"
47
- },
48
- "private": false,
49
- "author": "Shirudo",
50
- "contributors": [
51
- "Shirudo"
52
- ],
53
- "homepage": "https://github.com/shi-rudo/ddd-kit-ts#readme",
54
- "bugs": {
55
- "url": "https://github.com/shi-rudo/ddd-kit-ts/issues"
56
- },
57
- "peerDependencies": {
58
- "@shirudo/base-error": "^4.6.0",
59
- "@shirudo/result": "^0.0.6"
60
- },
61
- "scripts": {
62
- "build": "tsup",
63
- "test": "vitest",
64
- "clean": "rm -rf dist",
65
- "lint": "biome lint .",
66
- "format": "pnpm exec biome format --write . && pnpm exec biome lint --write . && pnpm exec biome check --write .",
67
- "typecheck": "tsc --noEmit",
68
- "docs:api": "typedoc",
69
- "docs:dev": "pnpm run docs:api && vitepress dev docs",
70
- "docs:build": "pnpm run docs:api && vitepress build docs",
71
- "docs:preview": "vitepress preview docs"
72
- }
2
+ "name": "@shirudo/ddd-kit",
3
+ "version": "1.0.0-rc.9",
4
+ "description": "Composable TypeScript toolkit for tactical DDD",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/shi-rudo/ddd-kit-ts.git"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ },
17
+ "./utils": {
18
+ "import": "./dist/utils.js",
19
+ "types": "./dist/utils.d.ts"
20
+ }
21
+ },
22
+ "sideEffects": false,
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "test": "vitest",
29
+ "clean": "rm -rf dist",
30
+ "lint": "biome lint .",
31
+ "format": "pnpm exec biome format --write . && pnpm exec biome lint --write . && pnpm exec biome check --write .",
32
+ "typecheck": "tsc --noEmit",
33
+ "prepublishOnly": "npm run clean && vitest run && npm run build",
34
+ "docs:api": "typedoc",
35
+ "docs:dev": "pnpm run docs:api && vitepress dev docs",
36
+ "docs:build": "pnpm run docs:api && vitepress build docs",
37
+ "docs:preview": "vitepress preview docs"
38
+ },
39
+ "keywords": [
40
+ "ddd",
41
+ "domain",
42
+ "typescript",
43
+ "toolkit"
44
+ ],
45
+ "license": "MIT",
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "devDependencies": {
50
+ "@biomejs/biome": "2.1.4",
51
+ "@shirudo/base-error": "^4.7.0",
52
+ "@shirudo/result": "^0.0.6",
53
+ "tsup": "^8.5.0",
54
+ "typedoc": "^0.28.19",
55
+ "typedoc-plugin-markdown": "^4.11.0",
56
+ "typedoc-vitepress-theme": "^1.1.2",
57
+ "typescript": "^5.9.2",
58
+ "vitepress": "^1.6.4",
59
+ "vitest": "^3.2.4"
60
+ },
61
+ "private": false,
62
+ "author": "Shirudo",
63
+ "contributors": [
64
+ "Shirudo"
65
+ ],
66
+ "homepage": "https://github.com/shi-rudo/ddd-kit-ts#readme",
67
+ "bugs": {
68
+ "url": "https://github.com/shi-rudo/ddd-kit-ts/issues"
69
+ },
70
+ "peerDependencies": {
71
+ "@shirudo/base-error": "^4.7.0",
72
+ "@shirudo/result": "^0.0.6"
73
+ }
73
74
  }