mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:19:31 +08:00
74 lines
No EOL
1.7 KiB
Text
74 lines
No EOL
1.7 KiB
Text
{
|
|
"name": "fenceparser",
|
|
"version": "2.2.0",
|
|
"description": "A well-tested parser for parsing metadata out of fenced code blocks in Markdown",
|
|
"keywords": [
|
|
"markdown"
|
|
],
|
|
"repository": "frencojobs/fenceparser",
|
|
"license": "MIT",
|
|
"author": "Frenco <hey@frenco.dev>",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm exec lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*": "prettier --write --ignore-unknown",
|
|
"*.ts": "eslint --fix"
|
|
},
|
|
"prettier": "@frenco/prettier-config",
|
|
"eslintConfig": {
|
|
"parserOptions": {
|
|
"project": "./tsconfig.json"
|
|
},
|
|
"extends": "@frenco/eslint-config",
|
|
"root": true
|
|
},
|
|
"devDependencies": {
|
|
"@changesets/cli": "^2.24.1",
|
|
"@frenco/eslint-config": "^2.1.0",
|
|
"@frenco/prettier-config": "^2.0.0",
|
|
"@frenco/tsconfig": "^0.1.0",
|
|
"@size-limit/preset-small-lib": "^8.0.0",
|
|
"c8": "^7.12.0",
|
|
"esbuild": "^0.14.53",
|
|
"eslint": "^8.20.0",
|
|
"lint-staged": "^13.0.3",
|
|
"prettier": "^2.7.1",
|
|
"simple-git-hooks": "^2.8.0",
|
|
"size-limit": "^8.0.0",
|
|
"typescript": "^4.7.4",
|
|
"unbuild": "^0.7.6",
|
|
"vitest": "^0.19.1"
|
|
},
|
|
"packageManager": "pnpm@7.9.0",
|
|
"size-limit": [
|
|
{
|
|
"path": "dist/index.mjs",
|
|
"limit": "1 kB"
|
|
},
|
|
{
|
|
"path": "dist/index.cjs",
|
|
"limit": "1 kB"
|
|
}
|
|
],
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"format": "prettier --write --cache .",
|
|
"size": "size-limit",
|
|
"test": "vitest --coverage",
|
|
"version": "changeset version && pnpm run format"
|
|
}
|
|
} |