|
13 | 13 | "src" |
14 | 14 | ], |
15 | 15 | "engines": { |
16 | | - "node": ">=20" |
| 16 | + "node": ">=22" |
17 | 17 | }, |
18 | 18 | "scripts": { |
19 | | - "build": "tsup src/index.ts --format esm,cjs --dts --clean --minify --sourcemap", |
20 | | - "dev": "tsup src/index.ts --format esm,cjs --dts --watch --sourcemap", |
21 | | - "test": "node --loader ts-node/esm --test", |
22 | | - "test:watch": "node --loader ts-node/esm --test --watch", |
23 | | - "test:coverage": "node --experimental-test-coverage --loader ts-node/esm --test", |
| 19 | + "build": "tsup src/index.ts", |
| 20 | + "dev": "tsup src/index.ts --watch", |
| 21 | + "test": "tsx --test tests/**/*.spec.ts", |
| 22 | + "test:watch": "tsx --test --watch tests/**/*.spec.ts", |
| 23 | + "test:coverage": "tsx --test --experimental-test-coverage tests/**/*.spec.ts", |
24 | 24 | "lint": "eslint .", |
25 | 25 | "lint:fix": "eslint . --fix" |
26 | 26 | }, |
|
35 | 35 | "author": "Hasibur Rahman", |
36 | 36 | "license": "MIT", |
37 | 37 | "description": "A routing controller package for Hono.js", |
38 | | - "dependencies": { |
39 | | - "hono": "^4.7.2", |
40 | | - "reflect-metadata": "^0.2.2" |
41 | | - }, |
| 38 | + "dependencies": {}, |
42 | 39 | "peerDependencies": { |
43 | | - "hono": "^4.7.2", |
44 | | - "reflect-metadata": "^0.2.2" |
| 40 | + "hono": "^4.7.2" |
45 | 41 | }, |
46 | 42 | "devDependencies": { |
47 | 43 | "@swc/core": "^1.11.5", |
48 | 44 | "@types/node": "^22.13.8", |
49 | 45 | "@typescript-eslint/eslint-plugin": "^8.25.0", |
50 | 46 | "@typescript-eslint/parser": "^8.25.0", |
51 | 47 | "eslint": "^9.21.0", |
| 48 | + "fast-glob": "^3.3.3", |
52 | 49 | "globals": "^16.0.0", |
53 | 50 | "semantic-release": "^24.2.3", |
54 | | - "ts-node": "^10.9.2", |
55 | 51 | "tsup": "^8.4.0", |
| 52 | + "tsx": "^4.19.3", |
56 | 53 | "typescript": "^5.8.2" |
57 | 54 | }, |
58 | 55 | "repository": { |
|
0 commit comments