30 lines
570 B
JSON
30 lines
570 B
JSON
{
|
|
"name": "@wyvern/markdown",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"dev": "tsc --watch",
|
|
"build": "tsc",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit --skipLibCheck"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"default": "./dist/src/index.js",
|
|
"types": "./src/index.ts"
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@types/jest": "^29.5.14",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.2.5",
|
|
"vitest": "^2.1.6"
|
|
}
|
|
}
|