inline-schema/package.json

35 lines
790 B
JSON

{
"name": "inline-schema",
"version": "1.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "tsx src/test.ts"
},
"keywords": [
"schema",
"parser",
"validator",
"typescript"
],
"author": "",
"license": "ISC",
"description": "A TypeScript library for parsing and validating inline schemas",
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}