@luca-financial/luca-schema 2.1.0 → 2.1.1
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/README.md +4 -4
- package/package.json +1 -7
package/README.md
CHANGED
|
@@ -130,10 +130,10 @@ const statement = {
|
|
|
130
130
|
## Development
|
|
131
131
|
|
|
132
132
|
```bash
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
133
|
+
pnpm build # Build the library
|
|
134
|
+
pnpm test # Run tests
|
|
135
|
+
pnpm lint # Check code style
|
|
136
|
+
pnpm type-check # Check TypeScript types
|
|
137
137
|
```
|
|
138
138
|
|
|
139
139
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luca-financial/luca-schema",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Schemas for the Luca Ledger application",
|
|
5
5
|
"author": "Johnathan Aspinwall",
|
|
6
6
|
"main": "dist/esm/index.js",
|
|
@@ -100,12 +100,6 @@
|
|
|
100
100
|
"typescript": "^5.8.3",
|
|
101
101
|
"typescript-eslint": "^8.51.0"
|
|
102
102
|
},
|
|
103
|
-
"exports": {
|
|
104
|
-
".": {
|
|
105
|
-
"import": "./dist/esm/index.js",
|
|
106
|
-
"types": "./dist/index.d.ts"
|
|
107
|
-
}
|
|
108
|
-
},
|
|
109
103
|
"scripts": {
|
|
110
104
|
"build": "pnpm clean && pnpm generate:types && node scripts/build.js",
|
|
111
105
|
"clean": "rimraf dist coverage",
|