74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"name": "markdown-it-async",
|
|
"type": "module",
|
|
"version": "0.1.3",
|
|
"description": "_description_",
|
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
"license": "MIT",
|
|
"funding": "https://github.com/sponsors/antfu",
|
|
"homepage": "https://github.com/antfu/markdown-it-async#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/antfu/markdown-it-async.git"
|
|
},
|
|
"bugs": "https://github.com/antfu/markdown-it-async/issues",
|
|
"keywords": [],
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"./dist/*",
|
|
"./dist/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@types/markdown-it": "^14.1.2",
|
|
"markdown-it": "^14.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^3.11.2",
|
|
"@antfu/ni": "^0.23.1",
|
|
"@antfu/utils": "^0.7.10",
|
|
"@types/node": "^22.10.1",
|
|
"bumpp": "^9.8.1",
|
|
"eslint": "^9.15.0",
|
|
"esno": "^4.8.0",
|
|
"lint-staged": "^15.2.10",
|
|
"pnpm": "^9.14.3",
|
|
"shiki": "^1.24.0",
|
|
"simple-git-hooks": "^2.11.1",
|
|
"typescript": "^5.7.2",
|
|
"unbuild": "^2.0.0",
|
|
"vite": "^6.0.1",
|
|
"vitest": "^2.1.6"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*": "eslint --fix"
|
|
},
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "unbuild --stub",
|
|
"lint": "eslint .",
|
|
"release": "bumpp && pnpm publish",
|
|
"start": "esno src/index.ts",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit"
|
|
}
|
|
} |