mail esm 2/2

This commit is contained in:
babayaga 2026-01-28 12:12:41 +01:00
parent c8300d0648
commit 1f4df47e07
2 changed files with 1719 additions and 11 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,11 +4,17 @@
"main": "dist-in/index.js",
"typings": "dist-in/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist-in/index.d.ts",
"import": "./dist-in/index.js"
}
},
"publishConfig": {
"access": "public"
},
"bin": {
"osr-mail": "dist-in/main.js"
"pm-mail": "dist-in/main.js"
},
"dependencies": {
"@polymech/commons": "file:../commons",
@ -24,25 +30,29 @@
"yargs": "^18.0.0"
},
"scripts": {
"test": "tsc; mocha --full-trace mocha \"spec/**/*.spec.js\"",
"test-with-coverage": "istanbul cover node_modules/.bin/_mocha -- 'spec/**/*.spec.js'",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "tslint --project=./tsconfig.json",
"build": "tsc -p .",
"dev": "tsc -p . --declaration -w",
"typings": "tsc --declaration",
"docs": "npx typedoc src/index.ts",
"dev-test-watch": "mocha-typescript-watch"
"docs": "npx typedoc src/index.ts"
},
"homepage": "https://git.osr-plastic.org/osr-plastic/osr-media",
"homepage": "https://git.polymech.org/polymech/polymech-mono",
"repository": {
"type": "git",
"url": "://git.osr-plastic.org/osr-plastic/osr-media.git"
"url": "://git.polymech.org/polymech/polymech-mono.git"
},
"engines": {
"node": ">= 14.0.0"
},
"license": "BSD-3-Clause",
"license": "ISC",
"keywords": [
"typescript"
]
],
"devDependencies": {
"vitest": "^4.0.18"
}
}