UNPKG

h5p-utils

Version:

A set of utility classes and functions to be used when creating H5P widgets and content types.

65 lines (64 loc) 1.55 kB
{ "name": "h5p-utils", "version": "4.0.0", "description": "A set of utility classes and functions to be used when creating H5P widgets and content types.", "type": "module", "main": "dist/index.cjs", "types": "dist/index.d.cts", "files": [ "dist/**/*", "tsconfig.json" ], "module": "dist/index.js", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "scripts": { "test": "tsc --project demo/tsconfig.json", "build": "tsup index.ts --format esm,cjs --dts", "publish-to-npm": "release-it", "lint:check": "eslint .", "lint:fix": "npm run lint:check -- --fix" }, "repository": { "type": "git", "url": "git+https://github.com/boyum/h5p-types.git" }, "homepage": "https://github.com/boyum/h5p-types/tree/main/packages/h5p-types#readme", "bugs": { "url": "https://github.com/boyum/h5p-types/issues" }, "keywords": [ "h5p" ], "author": { "name": "Sindre Bøyum", "url": "https://sinre.dev" }, "license": "Apache-2.0", "devDependencies": { "@release-it/conventional-changelog": "^7.0.0", "eslint-config-base": "*", "h5p-types": "*", "release-it": "^16.1.5", "replace-in-file": "^7.0.1", "tsconfig-base": "*", "tsup": "^7.2.0", "typescript": "^5.0.4" }, "engines": { "node": ">= 16" }, "eslintConfig": { "extends": "base" } }