|
| 1 | +{ |
| 2 | + "name": "FastKi", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "A modular, class-based toolkit for fast API development with TypeScript and Express.", |
| 5 | + "main": "index.js", |
| 6 | + "scripts": { |
| 7 | + "build": "tsc", |
| 8 | + "lint": "eslint src/**/*.{ts,tsx}", |
| 9 | + "start:dev": "ts-node-dev --respawn --transpile-only src/FastKit.ts", |
| 10 | + "format": "prettier --write 'src/**/*.{ts,tsx,js,json,md}'", |
| 11 | + "prepublishOnly": "pnpm run lint && pnpm run build" |
| 12 | + }, |
| 13 | + "keywords": [ |
| 14 | + "api", |
| 15 | + "typescript", |
| 16 | + "auth", |
| 17 | + "utils", |
| 18 | + "class-based", |
| 19 | + "modular", |
| 20 | + "toolkit", |
| 21 | + "headless", |
| 22 | + "nodejs" |
| 23 | + ], |
| 24 | + "author": "Abhishek Kumar <abhishek.nexgen.dev@gmail.com>", |
| 25 | + "license": "MIT", |
| 26 | + "lint-staged": { |
| 27 | + "src/**/*.{ts,tsx}": [ |
| 28 | + "eslint --fix", |
| 29 | + "prettier --write" |
| 30 | + ] |
| 31 | + }, |
| 32 | + |
| 33 | + |
| 34 | + "repository": { |
| 35 | + "type": "git", |
| 36 | + "url": "https://github.com/yourusername/your-repo.git" |
| 37 | + }, |
| 38 | + |
| 39 | + "bugs": { |
| 40 | + "url": "https://github.com/yourusername/your-repo/issues" |
| 41 | + }, |
| 42 | + |
| 43 | + "homepage": "https://github.com/yourusername/your-repo#readme", |
| 44 | + "packageManager": "pnpm@10.12.1", |
| 45 | + "devDependencies": { |
| 46 | + "@eslint/js": "^9.29.0", |
| 47 | + "@types/express": "^5.0.3", |
| 48 | + "@types/node": "^24.0.4", |
| 49 | + "@typescript-eslint/eslint-plugin": "^8.35.0", |
| 50 | + "@typescript-eslint/parser": "^8.35.0", |
| 51 | + "eslint": "^9.29.0", |
| 52 | + "eslint-config-prettier": "^10.1.5", |
| 53 | + "eslint-plugin-prettier": "^5.5.1", |
| 54 | + "globals": "^16.2.0", |
| 55 | + "husky": "^9.1.7", |
| 56 | + "i": "^0.3.7", |
| 57 | + "lint-staged": "^16.1.2", |
| 58 | + "prettier": "^3.6.2", |
| 59 | + "ts-node-dev": "^2.0.0", |
| 60 | + "typescript": "^5.8.3", |
| 61 | + "typescript-eslint": "^8.35.0" |
| 62 | + }, |
| 63 | + "dependencies": { |
| 64 | + "express": "^5.1.0" |
| 65 | + } |
| 66 | +} |
0 commit comments