-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 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
55
{
"name": "thingyan",
"version": "1.0.1",
"description": "Calculates the dates and times for the Mahar Thingyan(New Year) festival based on the given Myanmar year",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.cts",
"module": "dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "susee",
"test": "jest --coverage"
},
"keywords": [
"Myanmar Calendar",
" Myanmar New Year Days "
],
"repository": {
"type": "git",
"url": "git+https://github.com/phothinmg/thingyan.git"
},
"homepage": "https://phothinmg.github.io/thingyan/",
"author": {
"name": "Pho Thin Mg",
"email": "phothinmg@disroot.org",
"url": "https://phothinmg.github.io/"
},
"license": "Apache-2.0",
"files": [
"package.json",
"README.md",
"LICENSE",
"dist/**/*"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.6.0",
"susee": "^1.5.3",
"typedoc": "^0.28.19",
"typescript": "^5.9.3"
}
}