|
2 | 2 | "name": "simple-sms-sender", |
3 | 3 | "version": "0.1.1", |
4 | 4 | "description": "Simple SMS sender to multiple recipients using Twilio", |
5 | | - "main": "dist/index.js", |
| 5 | + "main": "dist/index.cjs", |
| 6 | + "module": "dist/index.js", |
| 7 | + "types": "dist/index.d.ts", |
| 8 | + "type": "module", |
6 | 9 | "author": "Jorge Barnaby <jorge.barnaby@gmail.com>", |
7 | 10 | "license": "MIT", |
8 | 11 | "homepage": "https://github.com/yorch/simple-sms-sender#readme", |
|
14 | 17 | "url": "https://github.com/yorch/simple-sms-sender" |
15 | 18 | }, |
16 | 19 | "scripts": { |
17 | | - "build": "run check && run build:ts", |
18 | | - "build:ts": "tsc --declaration", |
19 | | - "build:watch": "tsc -w", |
| 20 | + "build": "run check && tsup", |
20 | 21 | "test": "vitest --run", |
21 | 22 | "test:watch": "vitest", |
22 | 23 | "test:coverage": "vitest run --coverage", |
|
36 | 37 | "twilio": "^4.23.0" |
37 | 38 | }, |
38 | 39 | "devDependencies": { |
| 40 | + "@microsoft/api-extractor": "7.52.2", |
| 41 | + "@tsconfig/node-lts": "22.0.1", |
| 42 | + "@tsconfig/strictest": "2.0.5", |
39 | 43 | "@types/node": "20.17.30", |
40 | 44 | "@typescript-eslint/eslint-plugin": "6.21.0", |
41 | 45 | "@typescript-eslint/parser": "6.21.0", |
|
47 | 51 | "lint-staged": "15.5.0", |
48 | 52 | "prettier": "3.5.3", |
49 | 53 | "rimraf": "6.0.1", |
50 | | - "ts-node": "10.9.2", |
| 54 | + "tsup": "8.4.0", |
51 | 55 | "typescript": "5.8.2", |
52 | 56 | "vitest": "3.1.1", |
53 | 57 | "yarn-or-npm": "3.0.1" |
|
0 commit comments