UNPKG

lincd-jsonld

Version:

Utilities to parse and write JSON-LD for the LINCD library

64 lines 1.44 kB
{ "name": "lincd-jsonld", "license": "MPL-2.0", "version": "1.0.2", "description": "Utilities to parse and write JSON-LD for the LINCD library", "main": "lib/cjs/index.js", "types": "dist/lincd-jsonld.d.ts", "lincd": true, "scripts": { "start": "npm exec lincd dev", "build": "yarn lincd build", "prepublishOnly": "yarn lincd build production", "postpublish": "npm exec lincd register" }, "keywords": [ "lincd", "jsonld", "json-ld", "linked-data", "data", "json" ], "author": { "name": "René Verheij", "url": "https://github.com/flyon", "email": "rpwverheij@gmail.com" }, "dependencies": { "jsonld": "^8.2.1", "lincd": "^1.0" }, "devDependencies": { "@types/node": "^20.12.7", "lincd-cli": "^1.2", "tsconfig-to-dual-package": "^1.2.0", "typescript": "^5.7.3", "typescript-plugin-css-modules": "^5.1.0" }, "module": "lib/esm/index.js", "exports": { ".": { "types": "./lib/esm/index.d.ts", "import": "./lib/esm/index.js", "require": "./lib/cjs/index.js" }, "./*.js": { "types": "./lib/esm/*.d.ts", "import": "./lib/esm/*.js", "require": "./lib/cjs/*.js" }, "./*": { "types": "./lib/esm/*.d.ts", "import": "./lib/esm/*.js", "require": "./lib/cjs/*.js" } }, "typesVersions": { "*": { "*": [ "lib/esm/*" ] } } }