-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "korean-lunar-calendar",
"version": "0.3.6",
"description": "library to convert Korean lunar-calendar to Gregorian",
"repository": {
"type": "git",
"url": "https://github.com/usingsky/korean_lunar_calendar_js"
},
"author": "Jinil Lee <[email protected]>",
"license": "MIT",
"keywords": [
"korean",
"lunar",
"solar",
"calendar",
"한국",
"음력",
"양력",
"달력"
],
"main": "dist/korean-lunar-calendar.js",
"module": "dist/esm/korean-lunar-calendar.js",
"types": "dist/korean-lunar-calendar.d.ts",
"exports": {
".": {
"types": "./dist/korean-lunar-calendar.d.ts",
"module": "./dist/esm/korean-lunar-calendar.js",
"default": "./dist/korean-lunar-calendar.js"
}
},
"sideEffects": false,
"files": [
"dist/**/*"
],
"scripts": {
"compile": "tsc",
"clean": "rimraf --glob dist/* example/*.js",
"bundle": "rollup --config --bundleConfigAsCjs",
"build": "npm run clean && npm run bundle",
"lint": "eslint src --ext .ts",
"test": "jest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"jest": "^29.6.1",
"rimraf": "^5.0.1",
"rollup": "^3.26.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-minification": "^0.2.0",
"rollup-plugin-typescript2": "^0.35.0",
"rollup-plugin-visualizer": "^5.9.2",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
},
"engines": {
"node": ">= 16.14.0"
}
}