34 lines
595 B
JSON
34 lines
595 B
JSON
{
|
|
"name": "@openinula/error-handler",
|
|
"version": "0.0.1",
|
|
"author": {
|
|
"name": "IanDx",
|
|
"email": "iandxssxx@gmail.com"
|
|
},
|
|
"keywords": [
|
|
"dlight.js"
|
|
],
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"type": "module",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup --sourcemap"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^6.7.0",
|
|
"typescript": "^5.3.2"
|
|
},
|
|
"tsup": {
|
|
"entry": ["src/index.ts"],
|
|
"format": ["cjs", "esm"],
|
|
"clean": true,
|
|
"dts": true,
|
|
"minify": true
|
|
}
|
|
}
|