Feature: Basic Events, Models and Projections #2

Merged
piarrot merged 37 commits from feat-base-projections into main 2024-10-15 15:20:25 -03:00
4 changed files with 19 additions and 13 deletions
Showing only changes of commit 010e3eecfc - Show all commits

View File

@ -1,14 +1,10 @@
{
"name": "@fabric/core",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./domain": "./dist/domain.js",
"./validation": "./dist/validation.js",
"./validation/fields": "./dist/validation/fields/index.js"
".": "./dist/index.js"
},
"files": [
"dist"

View File

@ -1,8 +1,12 @@
{
"name": "@fabric/domain",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./mocks": "./dist/mocks.js"
},
"files": [
"dist"
],

View File

@ -1,8 +1,11 @@
{
"name": "@fabric/sqlite-store",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],

View File

@ -1,8 +1,11 @@
{
"name": "@ulthar/lib-template",
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],