1
0
Fork 0
freesewing/packages/rehype-jargon/package.json

58 lines
1.5 KiB
JSON
Raw Normal View History

{
2022-07-20 11:24:38 -04:00
"name": "rehype-jargon",
2022-08-23 13:45:20 +02:00
"version": "3.0.0-alpha.0",
"description": "A Rehype plugin for jargon terms",
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"funding": {
"type": "individual",
"url": "https://freesewing.org/patrons/join"
},
"keywords": [
"freesewing",
"freesewing"
],
"type": "module",
"module": "dist/index.mjs",
"exports": {
".": "./dist/index.mjs"
},
"scripts": {
"build": "node build.mjs",
"clean": "rimraf dist",
"mbuild": "NO_MINIFY=1 node build.mjs",
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
2022-09-15 17:11:06 +02:00
"test": "echo \"rehype-jargon: No tests configured. Perhaps you could write some?\" && exit 0",
"vbuild": "VERBOSE=1 node build.mjs",
"lab": "cd ../../sites/lab && yarn start",
"tips": "node ../../scripts/help.mjs",
"cibuild_step6": "node build.mjs",
"wbuild": "node build.mjs",
"wcibuild_step6": "node build.mjs",
"lint": "npx eslint 'src/*.mjs'"
},
"peerDependencies": {},
"dependencies": {
"unist-util-visit": "^4.1.0",
2022-07-20 11:24:38 -04:00
"hast-util-from-html": "^1.0.0"
},
"devDependencies": {},
"files": [
"dist/*",
"README.md"
],
"publishConfig": {
"access": "public",
2022-08-23 13:45:20 +02:00
"tag": "next"
},
"engines": {
2022-08-24 09:46:42 +02:00
"node": ">=16.0.0",
"npm": ">=8"
}
}