Files
zkldi_Tachi/common/package.json
T
2024-08-17 14:58:52 +00:00

46 lines
893 B
JSON

{
"name": "tachi-common",
"version": "2.4.0-dev",
"description": "Common Types & Utilities for Tachi",
"main": "./js/index.js",
"exports": {
".": "./js/index.js",
"./*": "./js/*.js"
},
"scripts": {
"test": "tap",
"build": "tsc -b",
"install": "tsc -b",
"prepublish": "tsc -b",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"author": "zk",
"license": "MIT",
"dependencies": {
"@types/express-serve-static-core": "4.17.29",
"@types/mongodb": "3.6.20",
"deepmerge": "^4.2.2",
"prudence": "0.10.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/tap": "^15.0.7",
"tap": "workspace:../vendor/tap",
"typescript": "4.9.4"
},
"nyc": {
"reporter": [
"html",
"lcov"
],
"all": true,
"include": [
"src/*/!(test-utils)/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/external/mongo/schemas.ts"
]
}
}