ts-lib-extended
Version:
Additional types and tools for typescript
61 lines (60 loc) • 1.64 kB
JSON
{
"name": "ts-lib-extended",
"version": "4.1.2",
"description": "Additional types and tools for typescript",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc -p ./tsconfig.prod.json && tsc-alias",
"build:dev": "tsc -p ./tsconfig.dev.json && tsc-alias",
"build:validate": "npm run build && npm test",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest watch",
"reset:modules": "npx --quiet -y rimraf node_modules/ package-lock.json",
"reset:creation": "npx --quiet -y rimraf dist/ tests/reports/",
"reset": "npm run reset:creation && npm run reset:modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maddin1502/ts-lib-extended.git"
},
"keywords": [
"typescript",
"types",
"extended",
"Events",
"EventHandler",
"Disposable",
"Dictionary",
"Enum"
],
"author": "maddin1502",
"license": "MIT",
"bugs": {
"url": "https://github.com/maddin1502/ts-lib-extended/issues"
},
"homepage": "https://github.com/maddin1502/ts-lib-extended#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^20.x",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"tsc-alias": "^1.8.11",
"typescript": "~5.7",
"typescript-eslint": "^8.25.0",
"vitest": "^3.0.7"
}
}