@m-doc/types
Version:
mdl implementation in typescript
49 lines (48 loc) • 1.09 kB
JSON
{
"name": "@m-doc/types",
"version": "0.1.0",
"description": "mdl implementation in typescript",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "rm -rf **/dist && tsup",
"lint": "biome lint ./src",
"test": "pnpm run test:node && pnpm run test:browser && pnpm run test:cov",
"test:node": "vitest run ./src/test/*.spec.ts",
"test:browser": "vitest run ./src/test/*.spec.ts --environment jsdom",
"test:cov": "vitest run --coverage"
},
"keywords": [
"mdl",
"mdoc"
],
"engines": {
"node": ">=16"
},
"author": "Lukas.J.Han <lukas.j.han@gmail.com>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"tsup": {
"entry": [
"./src/index.ts"
],
"sourceMap": true,
"splitting": false,
"clean": true,
"dts": true,
"format": [
"cjs",
"esm"
]
},
"gitHead": "5bc11f5e4ae285392efaa15520b52de7ce2f86f1"
}