UNPKG

@rakutentech/docsify-code-inline

Version:
74 lines (73 loc) 2.08 kB
{ "name": "@rakutentech/docsify-code-inline", "version": "1.0.5", "publishConfig": { "access": "public", "typings": "types/index.d.ts" }, "description": "Syntax highlighting for inline code", "license": "MIT", "repository": "rakutentech/esquisite", "author": "Julien Cayzac", "homepage": "https://github.com/rakutentech/esquisite/tree/main/packages/docsify-code-inline#readme", "bugs": "https://github.com/rakutentech/esquisite/issues", "main": "dist/index.js", "module": "dist/index.esm.js", "engines": { "node": ">=12.0.0" }, "scripts": { "build": "rollup -c", "ci:coverage": "nyc pnpm run test && nyc report --reporter=text-lcov > coverage.lcov", "ci:lint": "pnpm run build && pnpm run lint", "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}", "ci:test": "pnpm run test -- --verbose", "lint": "pnpm run lint:js && pnpm run lint:docs && pnpm run lint:package", "lint:docs": "prettier --single-quote --arrow-parens avoid --trailing-comma none --write README.md", "lint:js": "eslint --fix --cache src test --ext .js,.ts", "lint:package": "prettier --write package.json --plugin=prettier-plugin-package", "prebuild": "del-cli dist", "prepare": "pnpm run build", "prepublishOnly": "pnpm run lint", "pretest": "pnpm run build", "test": "env TS_NODE_PROJECT=\"tsconfig.testing.json\" ava" }, "files": [ "CHANGELOG.md", "dist", "types", "README.md", "LICENSE" ], "keywords": [ "docsify", "docsify-plugin", "prism", "highlight", "syntax" ], "devDependencies": { "@types/stylelint": "^9.10.1", "stylelint": "^13.9.0", "stylelint-config-standard": "^20.0.0" }, "types": "types/index.d.ts", "typings": "types/index.d.ts", "ava": { "babel": { "compileEnhancements": false }, "extensions": [ "ts" ], "require": [ "ts-node/register" ], "files": [ "!**/fixtures/**", "!**/helpers/**", "!**/recipes/**", "!**/types.ts" ] } }