UNPKG

jsonschema2ddl

Version:
48 lines 1.02 kB
{ "name": "jsonschema2ddl", "version": "0.1.4", "description": "Convert JSON Schema to DDL", "main": "./lib/index.js", "types": "./lib/index.d.ts", "type": "module", "scripts": { "test": "NODE_OPTIONS='--loader=tsx' ava", "prepublish": "tsc" }, "repository": { "type": "git", "url": "git+https://github.com/promptstore/jsonschema2ddl.git" }, "keywords": [ "JSON", "Schema", "DDL" ], "author": "Mark Mo", "license": "Apache-2.0", "bugs": { "url": "https://github.com/promptstore/jsonschema2ddl/issues" }, "homepage": "https://github.com/promptstore/jsonschema2ddl#readme", "devDependencies": { "@types/node": "^20.8.2", "ava": "^5.3.1", "dayjs": "^1.11.10", "pg": "^8.11.3", "tsx": "^3.13.0", "typescript": "^5.2.2" }, "dependencies": { "jsonschema": "^1.4.1", "node-fetch": "^3.3.2" }, "ava": { "files": [ "test/**/*", "!test/helpers.ts" ], "extensions": { "ts": "module" } } }