Aktueller Stand

This commit is contained in:
2026-01-22 19:05:45 +01:00
parent 85dee61a4d
commit e280e4eadb
1967 changed files with 397327 additions and 74093 deletions

View File

@@ -1,12 +1,13 @@
{
"name": "json-schema-ref-resolver",
"version": "1.0.1",
"version": "3.0.0",
"description": "JSON schema reference resolver",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test:unit": "c8 --100 node --test",
"test:typescript": "tsd",
"test": "npm run lint && npm run test:unit && npm run test:typescript"
@@ -19,6 +20,9 @@
"type": "git",
"url": "git+https://github.com/fastify/json-schema-ref-resolver.git"
},
"bugs": {
"url": "https://github.com/fastify/json-schema-ref-resolver/issues"
},
"keywords": [
"json",
"schema",
@@ -27,18 +31,46 @@
"swagger"
],
"author": "Ivan Tymoshenko <ivan@tymoshenko.me>",
"contributors": [
{
"name": "Matteo Collina",
"email": "hello@matteocollina.com"
},
{
"name": "James Sumners",
"url": "https://james.sumners.info"
},
{
"name": "Gürgün Dayıoğlu",
"email": "hey@gurgun.day",
"url": "https://heyhey.to/G"
},
{
"name": "Frazer Smith",
"email": "frazer.dev@icloud.com",
"url": "https://github.com/fdawgs"
}
],
"license": "MIT",
"homepage": "https://github.com/fastify/json-schema-ref-resolver#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fastify"
},
{
"type": "opencollective",
"url": "https://opencollective.com/fastify"
}
],
"dependencies": {
"fast-deep-equal": "^3.1.3"
"dequal": "^2.0.3"
},
"devDependencies": {
"c8": "^8.0.1",
"standard": "^17.1.0",
"tsd": "^0.29.0"
},
"standard": {
"ignore": [
"types/*"
]
"@fastify/pre-commit": "^2.1.0",
"c8": "^10.1.3",
"eslint": "^9.17.0",
"neostandard": "^0.12.0",
"tsd": "^0.31.0"
}
}