-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 KB
/
package.json
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nepali-datetime",
"version": "1.4.0",
"description": "A Node project designed to support native JavaScript-like features for Nepali dates. It includes features such as 'NepaliDate' for Nepali date support and 'dateConverter' for date conversions.",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dateConverter": {
"types": "./dist/dateConverter/index.d.ts",
"import": "./dist/dateConverter/index.mjs",
"require": "./dist/dateConverter/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"javascript",
"typescript",
"node",
"nepal",
"nepali",
"nepali-date",
"nepali-date-converter",
"nepali-time",
"nepali-timezone",
"date-converter",
"calendar",
"ad-bs",
"ad-to-bs",
"bs-ad",
"bs-to-ad",
"AD to BS",
"BS to AD"
],
"scripts": {
"build": "unbuild",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky && npm run build",
"lint": "prettier --check .",
"format": "prettier --write .",
"example": "ts-node example.ts"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"repository": {
"url": "https://github.com/opensource-nepal/node-nepali-datetime.git",
"type": "git"
},
"author": "OpenSource Nepal",
"license": "GPL-3.0",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/jest": "^29.5.4",
"@types/node": "^22.10.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"unbuild": "^3.0.1"
},
"engines": {
"node": ">=18"
}
}