run npm install to generate a package lock

This commit is contained in:
sashinexists
2024-12-07 13:18:31 +11:00
parent e7d08a91b5
commit 23437d228e
2501 changed files with 290663 additions and 0 deletions

76
node_modules/marked-highlight/package.json generated vendored Normal file
View File

@@ -0,0 +1,76 @@
{
"name": "marked-highlight",
"version": "2.1.4",
"description": "marked highlight",
"main": "./lib/index.cjs",
"module": "./src/index.js",
"browser": "./lib/index.umd.js",
"types": "./src/index.d.ts",
"type": "module",
"keywords": [
"marked",
"extension",
"highlight"
],
"files": [
"lib/",
"src/"
],
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.js",
"require": "./lib/index.cjs"
}
},
"scripts": {
"test": "jest --verbose",
"test:cover": "jest --coverage",
"test:types": "tsd -t src/index.d.ts -f types_test/index.test-d.ts",
"lint": "eslint",
"build": "rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markedjs/marked-highlight.git"
},
"author": "Tony Brix <Tony@Brix.ninja> (https://Tony.Brix.ninja)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markedjs/marked-highlight/issues"
},
"homepage": "https://github.com/markedjs/marked-highlight#readme",
"peerDependencies": {
"marked": ">=4 <15"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@markedjs/eslint-config": "^1.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.3",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"babel-jest": "^29.7.0",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"highlight.js": "^11.10.0",
"jest-cli": "^29.7.0",
"marked": "^14.0.0",
"pygmentize-bundled": "^2.3.0",
"rollup": "^4.20.0",
"semantic-release": "^24.0.0",
"tsd": "^0.31.1"
},
"tsd": {
"compilerOptions": {
"paths": {
"marked-highlight": [
"./src"
]
}
}
}
}