-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "salutation-generator",
"version": "0.1.3",
"description": "A flexible TypeScript library for generating personalized greetings based on time of day, user context, professionalism level, and relationship status",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"prepare": "pnpm run build",
"test": "vitest run",
"test:watch": "vitest --watch",
"prepublishOnly": "pnpm run build",
"lint": "tsc --noEmit",
"test:coverage": "vitest run --coverage",
"prepack": "pnpm run build && pnpm run test"
},
"keywords": [
"typescript",
"greeting",
"salutation",
"personalization",
"time-based",
"user-experience",
"fintech",
"i18n-ready"
],
"author": "Oghenetefa Okotete",
"license": "MIT",
"packageManager": "pnpm@10.10.0",
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/everurstruly/salutation-generator.git"
},
"bugs": {
"url": "https://github.com/everurstruly/salutation-generator/issues"
},
"homepage": "https://github.com/everurstruly/salutation-generator#readme"
}