Skip to content

Commit

Permalink
feat(formats): export ajv stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
awlayton committed Apr 5, 2024
1 parent 53b8334 commit a57ed6b
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions packages/formats/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@oada/formats",
"version": "4.0.0",
"version": "4.1.0",
"description": "Reworked OADA formats",
"keywords": [
"oada",
Expand All @@ -20,7 +20,19 @@
},
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./src/index.ts",
"default": "./dist/index.js"
},
"./ajv": {
"types": "./dist/ajv.d.ts",
"module": "./src/ajv.ts",
"default": "./dist/ajv.js"
}
},
"directories": {
"lib": "dist"
},
Expand Down Expand Up @@ -94,4 +106,4 @@
"mkdirp": "^3.0.1",
"yargs": "^17.7.2"
}
}
}

0 comments on commit a57ed6b

Please sign in to comment.