|
|
@@ -0,0 +1,56 @@
|
|
|
+{
|
|
|
+ "name": "rollup-plugin-md-ts",
|
|
|
+ "version": "0.0.0",
|
|
|
+ "description": "a rollup plugin for markdown files",
|
|
|
+ "type": "module",
|
|
|
+ "exports": {
|
|
|
+ ".": {
|
|
|
+ "default": "./dist/index.js",
|
|
|
+ "types": "./dist/index.d.ts"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "scripts": {
|
|
|
+ "pretest": "npm run build",
|
|
|
+ "build": "rollup --config rollup.config.ts --configPlugin @rollup/plugin-typescript",
|
|
|
+ "prebuild": "rm -rf dist/*"
|
|
|
+ },
|
|
|
+ "keywords": [
|
|
|
+ "rollup",
|
|
|
+ "plugin",
|
|
|
+ "md",
|
|
|
+ "markdown",
|
|
|
+ "typescript"
|
|
|
+ ],
|
|
|
+ "author": "any-tdf",
|
|
|
+ "funding": "https://stdf.design?fund",
|
|
|
+ "license": "MIT",
|
|
|
+ "homepage": "https://github.com/any-tdf/stdf/blob/main/packages/rollup-plugin-md-ts/README.md",
|
|
|
+ "repository": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/any-tdf/stdf"
|
|
|
+ },
|
|
|
+ "bugs": {
|
|
|
+ "url": "https://github.com/any-tdf/stdf/issues?q=is:issue+is:open+md"
|
|
|
+ },
|
|
|
+ "dependencies": {
|
|
|
+ "marked": "^15.0.3",
|
|
|
+ "rollup": "^4.28.1",
|
|
|
+ "rollup-pluginutils": "^2.8.2"
|
|
|
+ },
|
|
|
+ "devDependencies": {
|
|
|
+ "@eslint/js": "^9.16.0",
|
|
|
+ "@rollup/plugin-node-resolve": "^15.3.0",
|
|
|
+ "@rollup/plugin-typescript": "^12.1.1",
|
|
|
+ "assert": "^2.1.0",
|
|
|
+ "eslint": "^9.16.0",
|
|
|
+ "eslint-config-prettier": "^9.1.0",
|
|
|
+ "fs": "^0.0.1-security",
|
|
|
+ "globals": "^15.13.0",
|
|
|
+ "mocha": "^11.0.1",
|
|
|
+ "rollup-plugin-uglify": "^6.0.4",
|
|
|
+ "source-map-support": "^0.5.21",
|
|
|
+ "tslib": "^2.8.1",
|
|
|
+ "typescript": "^5.7.2",
|
|
|
+ "typescript-eslint": "^8.18.0"
|
|
|
+ }
|
|
|
+}
|