Upgraded the package version to 0.0.9. Introduced Typedoc for generating documentation with added script in package.json. Enhanced exception handling by introducing `DependencyResolutionError`. Refined TSinjex comments and README structure for better readability. Updated index file exports for better module organization.
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"name": "ts-injex",
|
|
"version": "0.0.9",
|
|
"description": "",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build:tsc": "tsc",
|
|
"lint": "eslint --ext .ts .",
|
|
"lint:fix": "eslint --fix --ext .ts .",
|
|
"test:file": "jest --watch --onlyChanged --coverage=true --verbose",
|
|
"test:verbose": "jest --verbose",
|
|
"version:show": "node -e \"console.log(require('./package.json').version)\"",
|
|
"docs": "typedoc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/PxaMMaxP/TSinjex.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Max P. (@Github: PxaMMaxP)",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"typescript": "^5.5.4",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.14.11",
|
|
"@stylistic/eslint-plugin": "^2.6.2",
|
|
"@typescript-eslint/eslint-plugin": "^8.1.0",
|
|
"@typescript-eslint/parser": "^8.1.0",
|
|
"eslint-plugin-deprecation": "^3.0.0",
|
|
"eslint-plugin-import": "^2.29.1",
|
|
"eslint-plugin-jsdoc": "^50.2.2",
|
|
"eslint-plugin-override": "https://github.com/PxaMMaxP/eslint-plugin-override",
|
|
"jest": "^29.7.0",
|
|
"ts-jest": "^29.2.3",
|
|
"typedoc": "^0.26.5"
|
|
},
|
|
"dependencies": {
|
|
"eslint-plugin-prettier": "^5.2.1",
|
|
"jest-environment-jsdom": "^29.7.0"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"src/**/*",
|
|
"README.md",
|
|
"LICENSE",
|
|
"package.json"
|
|
]
|
|
} |