40 lines
991 B
JSON
Raw Normal View History

2025-04-22 15:20:41 +03:00
{
"name": "@triliumnext/turndown-plugin-gfm",
"version": "0.0.1",
"private": true,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"nx": {
"sourceRoot": "packages/turndown-plugin-gfm/src",
"targets": {
"build": {
"executor": "@nx/js:swc",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "packages/turndown-plugin-gfm/dist",
"main": "packages/turndown-plugin-gfm/src/index.js",
"tsConfig": "packages/turndown-plugin-gfm/tsconfig.lib.json",
"skipTypeCheck": true,
"stripLeadingPaths": true
}
}
}
},
"dependencies": {
"@swc/helpers": "~0.5.11"
}
}