UNPKG

edge-iconify

Version:

Iconify integration for the Edge template engine

119 lines (118 loc) 2.83 kB
{ "name": "edge-iconify", "version": "2.0.1", "description": "Iconify integration for the Edge template engine", "type": "module", "main": "build/index.js", "files": [ "build", "!build/bin", "!build/tests" ], "exports": { ".": "./build/index.js", "./types": "./build/src/types.js" }, "engines": { "node": ">=18.16.0" }, "scripts": { "pretest": "npm run lint", "test": "c8 npm run quick:test", "clean": "del-cli build", "typecheck": "tsc --noEmit", "precompile": "npm run lint && npm run clean", "compile": "tsup-node && tsc --emitDeclarationOnly --declaration", "build": "npm run compile", "prepublishOnly": "npm run build", "lint": "eslint . --ext=.ts", "format": "prettier --write .", "release": "np", "version": "npm run build", "sync-labels": "github-label-sync --labels .github/labels.json edge-js/edge-iconify", "quick:test": "node --enable-source-maps --loader=ts-node/esm bin/test.ts" }, "keywords": [ "edge.js", "edge-templating" ], "author": "virk", "license": "MIT", "devDependencies": { "@adonisjs/eslint-config": "^1.2.1", "@adonisjs/prettier-config": "^1.2.1", "@adonisjs/tsconfig": "^1.2.1", "@commitlint/cli": "^18.4.3", "@commitlint/config-conventional": "^18.4.3", "@iconify-json/mdi": "^1.1.64", "@japa/assert": "^2.1.0", "@japa/runner": "^3.1.1", "@swc/core": "^1.3.102", "@types/node": "^20.10.6", "c8": "^9.0.0", "del-cli": "^5.1.0", "edge.js": "^6.0.1", "eslint": "^8.56.0", "github-label-sync": "^2.3.1", "husky": "^8.0.3", "np": "^9.2.0", "prettier": "^3.1.1", "ts-node": "^10.9.2", "tsup": "^8.0.1", "typescript": "^5.3.3" }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "dependencies": { "@iconify/iconify": "^3.1.1" }, "peerDependencies": { "edge.js": "^6.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/edge-js/edge-iconify.git" }, "bugs": { "url": "https://github.com/edge-js/edge-iconify/issues" }, "homepage": "https://github.com/edge-js/edge-iconify#readme", "prettier": "@adonisjs/prettier-config", "eslintConfig": { "extends": "@adonisjs/eslint-config/package" }, "c8": { "reporter": [ "text", "html" ], "exclude": [ "tests/**" ] }, "tsup": { "entry": [ "./index.ts", "./src/types.ts" ], "outDir": "./build", "clean": true, "format": "esm", "dts": false, "sourcemap": true, "target": "esnext" }, "np": { "message": "chore(release): %s", "tag": "latest", "branch": "main", "anyBranch": false }, "publishConfig": { "access": "public", "tag": "latest" } }