Files
adf-codec/package.json
T
lilleman 0dfcc0f9ca
CI / gate (push) Successful in 7m12s
CI / publish (push) Has been skipped
5c: report the depth cause from the guards, and make the publish converge
2026-09-03 21:19:01 +02:00

35 lines
945 B
JSON

{
"name": "@larvit/adf-codec",
"version": "0.0.0",
"private": true,
"description": "Lossless conversion between Atlassian Document Format, extended markdown and HTML",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://gitea.larvit.se/larvit/adf-codec.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "node --test --experimental-test-coverage --test-coverage-exclude=\"src/**/*.test.ts\" --test-coverage-branches=98 --test-coverage-functions=100 --test-coverage-lines=100 \"src/**/*.test.ts\"",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.build.json"
},
"devDependencies": {
"@types/node": "24.13.3",
"typescript": "7.0.2"
}
}